aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/libLumina
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2016-11-17 09:56:13 -0500
committerKen Moore <ken@ixsystems.com>2016-11-17 09:56:13 -0500
commite81f5030cba63c6ba8763c688d86d0b1843272e0 (patch)
tree19bb9a5a432f0570b378e62f06554fe403601096 /src-qt5/core/libLumina
parentAdd a new page for mouse-settings in lumina-config (disabled for the moment) (diff)
downloadlumina-e81f5030cba63c6ba8763c688d86d0b1843272e0.tar.gz
lumina-e81f5030cba63c6ba8763c688d86d0b1843272e0.tar.bz2
lumina-e81f5030cba63c6ba8763c688d86d0b1843272e0.zip
Bump the copyright year on the LuminaX11 files.
Diffstat (limited to 'src-qt5/core/libLumina')
-rw-r--r--src-qt5/core/libLumina/LuminaX11.cpp3
-rw-r--r--src-qt5/core/libLumina/LuminaX11.h3
2 files changed, 3 insertions, 3 deletions
diff --git a/src-qt5/core/libLumina/LuminaX11.cpp b/src-qt5/core/libLumina/LuminaX11.cpp
index 3708af6d..a8016460 100644
--- a/src-qt5/core/libLumina/LuminaX11.cpp
+++ b/src-qt5/core/libLumina/LuminaX11.cpp
@@ -1,6 +1,6 @@
//===========================================
// Lumina-DE source code
-// Copyright (c) 2014-2015, Ken Moore
+// Copyright (c) 2014-2016, Ken Moore
// Available under the 3-clause BSD license
// See the LICENSE file for full details
//===========================================
@@ -1124,6 +1124,7 @@ void LXCB::closeSystemTray(WId trayID){
xcb_destroy_window(QX11Info::connection(), trayID);
}
+
// === SetScreenWorkArea() ===
/*void LXCB::SetScreenWorkArea(unsigned int screen, QRect rect){
//This is only useful because Fluxbox does not set the _NET_WORKAREA root atom
diff --git a/src-qt5/core/libLumina/LuminaX11.h b/src-qt5/core/libLumina/LuminaX11.h
index 7b6cce3c..2c741111 100644
--- a/src-qt5/core/libLumina/LuminaX11.h
+++ b/src-qt5/core/libLumina/LuminaX11.h
@@ -1,6 +1,6 @@
//===========================================
// Lumina-DE source code
-// Copyright (c) 2014-2015, Ken Moore
+// Copyright (c) 2014-2016, Ken Moore
// Available under the 3-clause BSD license
// See the LICENSE file for full details
//===========================================
@@ -161,7 +161,6 @@ public:
WId startSystemTray(int screen = 0); //Startup the system tray (returns window ID for tray)
void closeSystemTray(WId); //Close the system tray
-
//============
// WM Functions (directly changing/reading properties)
// - Using these directly may prevent the WM from seeing the change
bgstack15