summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 )