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

Stephan Bergmann (via logerrit) logerrit at kemper.freedesktop.org
Sat Jan 11 08:20:17 UTC 2020


 include/svx/colorwindow.hxx |    5 +++++
 1 file changed, 5 insertions(+)

New commits:
commit 2553dc77098922b29902b299fd899f134c0e20ee
Author:     Stephan Bergmann <sbergman at redhat.com>
AuthorDate: Sat Jan 11 08:29:47 2020 +0100
Commit:     Stephan Bergmann <sbergman at redhat.com>
CommitDate: Sat Jan 11 09:19:47 2020 +0100

    -Werror,-Wdeprecated-copy-dtor
    
    Change-Id: Id57781de7056fce95b2ec15a5f944b4ca175c54f
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86592
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <sbergman at redhat.com>

diff --git a/include/svx/colorwindow.hxx b/include/svx/colorwindow.hxx
index 201b1e1dbe19..c6e1f247cfae 100644
--- a/include/svx/colorwindow.hxx
+++ b/include/svx/colorwindow.hxx
@@ -129,6 +129,11 @@ public:
     MenuOrToolMenuButton(SvxColorToolBoxControl* pControl, ToolBox* pToolbar, sal_uInt16 nId);
     ~MenuOrToolMenuButton();
 
+    MenuOrToolMenuButton(MenuOrToolMenuButton const &) = default;
+    MenuOrToolMenuButton(MenuOrToolMenuButton &&) = default;
+    MenuOrToolMenuButton & operator =(MenuOrToolMenuButton const &) = default;
+    MenuOrToolMenuButton & operator =(MenuOrToolMenuButton &&) = default;
+
     bool get_active() const;
     void set_inactive() const;
     weld::Widget* get_widget() const;


More information about the Libreoffice-commits mailing list