summaryrefslogtreecommitdiff
path: root/toolkit
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-04-24 16:07:24 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-04-24 16:07:45 +0100
commitb856ea5af5282b8790a0edd6aa3a6de5f54c3ba6 (patch)
tree0a9beae258a7bcaae8c7289ca2f415e45592e733 /toolkit
parent6ac292332620737bfe522166f88994097d1a5460 (diff)
inline unused ctor needed by MSVC at compile time
Diffstat (limited to 'toolkit')
-rw-r--r--toolkit/inc/toolkit/controls/unocontrolbase.hxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/toolkit/inc/toolkit/controls/unocontrolbase.hxx b/toolkit/inc/toolkit/controls/unocontrolbase.hxx
index 34779ccd20d9..d5e19ea5e102 100644
--- a/toolkit/inc/toolkit/controls/unocontrolbase.hxx
+++ b/toolkit/inc/toolkit/controls/unocontrolbase.hxx
@@ -40,8 +40,10 @@
class TOOLKIT_DLLPUBLIC UnoControlBase : public UnoControl
{
protected:
- UnoControlBase();
-
+ UnoControlBase() //do not use! needed by MSVC at compile time to satisfy AggImplInheritanceHelper5
+ {
+ assert(false);
+ }
protected:
UnoControlBase( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& i_factory )
:UnoControl( i_factory )