[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] 30/473: Remove deleted function declarations.

noreply at xfce.org noreply at xfce.org
Mon Feb 16 23:53:20 CET 2015


This is an automated email from the git hooks/post-receive script.

gottcode pushed a commit to branch master
in repository panel-plugins/xfce4-whiskermenu-plugin.

commit 4b8613814df389b7c0d0bbf517a6b31dd0c67a5e
Author: Graeme Gott <graeme at gottcode.org>
Date:   Wed Jun 26 14:59:03 2013 -0400

    Remove deleted function declarations.
    
    Downgrade to C++98.
---
 src/launcher.hpp       |    4 ++--
 src/launcher_model.hpp |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/launcher.hpp b/src/launcher.hpp
index dc918d0..b27a633 100644
--- a/src/launcher.hpp
+++ b/src/launcher.hpp
@@ -59,8 +59,8 @@ public:
 	static void set_show_description(bool show);
 
 private:
-	Launcher(const Launcher& launcher)=delete;
-	Launcher& operator=(const Launcher& launcher)=delete;
+	Launcher(const Launcher& launcher);
+	Launcher& operator=(const Launcher& launcher);
 
 private:
 	GarconMenuItem* m_item;
diff --git a/src/launcher_model.hpp b/src/launcher_model.hpp
index f5361c0..42156ef 100644
--- a/src/launcher_model.hpp
+++ b/src/launcher_model.hpp
@@ -64,8 +64,8 @@ public:
 	};
 
 private:
-	LauncherModel(const LauncherModel &model)=delete;
-	LauncherModel & operator=(const LauncherModel &model)=delete;
+	LauncherModel(const LauncherModel& model);
+	LauncherModel& operator=(const LauncherModel& model);
 
 private:
 	GtkListStore* m_model;

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list