[Libreoffice-commits] core.git: include/svx

Stephan Bergmann sbergman at redhat.com
Thu Apr 7 09:26:14 UTC 2016


 include/svx/tbxcolorupdate.hxx |    3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 8faf41a1d5572f2360ac79396310b6250a470528
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Thu Apr 7 11:24:04 2016 +0200

    Prevent MSVC from emitting special member functions of dllexport class
    
    ...that fail instantiation when ToolBox is incomplete (which is normally hidden
    by --enable-pch).
    
    Change-Id: I49ea33cecae9f44dfcd9c7bd8bf0f00f3548ed94

diff --git a/include/svx/tbxcolorupdate.hxx b/include/svx/tbxcolorupdate.hxx
index ed807b5..34e1689 100644
--- a/include/svx/tbxcolorupdate.hxx
+++ b/include/svx/tbxcolorupdate.hxx
@@ -51,6 +51,9 @@ namespace svx
         void        Update( const Color& rColor, bool bForceUpdate = false );
 
     private:
+        ToolboxButtonColorUpdater(ToolboxButtonColorUpdater &) = delete;
+        void operator =(ToolboxButtonColorUpdater) = delete;
+
         sal_uInt16      mnBtnId;
         sal_uInt16      mnSlotId;
         VclPtr<ToolBox> mpTbx;


More information about the Libreoffice-commits mailing list