diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-04-24 16:07:24 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-04-24 16:07:45 +0100 |
commit | b856ea5af5282b8790a0edd6aa3a6de5f54c3ba6 (patch) | |
tree | 0a9beae258a7bcaae8c7289ca2f415e45592e733 /toolkit | |
parent | 6ac292332620737bfe522166f88994097d1a5460 (diff) |
inline unused ctor needed by MSVC at compile time
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/inc/toolkit/controls/unocontrolbase.hxx | 6 |
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 ) |