[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] 13/20: Use explicit qualifier on constructors.

noreply at xfce.org noreply at xfce.org
Thu Feb 6 12:03:30 CET 2020


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

g   o   t   t   c   o   d   e       p   u   s   h   e   d       a       c   o   m   m   i   t       t   o       b   r   a   n   c   h       m   a   s   t   e   r   
   in repository panel-plugins/xfce4-whiskermenu-plugin.

commit 490360e1cdcd8421a755eda0c47a35b88eb404a0
Author: Graeme Gott <graeme at gottcode.org>
Date:   Sun Feb 2 06:00:16 2020 -0500

    Use explicit qualifier on constructors.
---
 panel-plugin/favorites-page.h  | 2 +-
 panel-plugin/page.h            | 2 +-
 panel-plugin/profile-picture.h | 2 +-
 panel-plugin/recent-page.h     | 4 ++--
 panel-plugin/run-action.h      | 2 +-
 5 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/panel-plugin/favorites-page.h b/panel-plugin/favorites-page.h
index 9af38ee..0981992 100644
--- a/panel-plugin/favorites-page.h
+++ b/panel-plugin/favorites-page.h
@@ -28,7 +28,7 @@ namespace WhiskerMenu
 class FavoritesPage : public Page
 {
 public:
-	FavoritesPage(Window* window);
+	explicit FavoritesPage(Window* window);
 	~FavoritesPage();
 
 	bool contains(Launcher* launcher) const;
diff --git a/panel-plugin/page.h b/panel-plugin/page.h
index 8189037..998985b 100644
--- a/panel-plugin/page.h
+++ b/panel-plugin/page.h
@@ -31,7 +31,7 @@ class Window;
 class Page
 {
 public:
-	explicit Page(WhiskerMenu::Window *window);
+	explicit Page(Window* window);
 	virtual ~Page();
 
 	Page(const Page&) = delete;
diff --git a/panel-plugin/profile-picture.h b/panel-plugin/profile-picture.h
index f2e5541..776df35 100644
--- a/panel-plugin/profile-picture.h
+++ b/panel-plugin/profile-picture.h
@@ -28,7 +28,7 @@ class Window;
 class ProfilePicture
 {
 public:
-	ProfilePicture(Window* window);
+	explicit ProfilePicture(Window* window);
 	~ProfilePicture();
 
 	ProfilePicture(const ProfilePicture&) = delete;
diff --git a/panel-plugin/recent-page.h b/panel-plugin/recent-page.h
index 17521ab..9e97a56 100644
--- a/panel-plugin/recent-page.h
+++ b/panel-plugin/recent-page.h
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2013, 2015 Graeme Gott <graeme at gottcode.org>
+ * Copyright (C) 2013-2020 Graeme Gott <graeme at gottcode.org>
  *
  * This library is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -26,7 +26,7 @@ namespace WhiskerMenu
 class RecentPage : public Page
 {
 public:
-	RecentPage(Window* window);
+	explicit RecentPage(Window* window);
 	~RecentPage();
 
 	void add(Launcher* launcher);
diff --git a/panel-plugin/run-action.h b/panel-plugin/run-action.h
index be9c0a8..6071f18 100644
--- a/panel-plugin/run-action.h
+++ b/panel-plugin/run-action.h
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2013, 2015, 2020 Graeme Gott <graeme at gottcode.org>
+ * Copyright (C) 2013-2020 Graeme Gott <graeme at gottcode.org>
  *
  * This library is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

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


More information about the Xfce4-commits mailing list