aboutsummaryrefslogtreecommitdiff
path: root/libLumina/LuminaX11.h
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-03-11 23:40:32 -0400
committerKen Moore <ken@pcbsd.org>2015-03-11 23:40:32 -0400
commit950c4ebc4343452dc6f99a9c74d71e4dba9d7eaa (patch)
tree9f88083114df480a5cd7b880752245cf3782cf73 /libLumina/LuminaX11.h
parentConvert the windowImage routine to XCB from XLib, and set the desktop (system... (diff)
downloadlumina-950c4ebc4343452dc6f99a9c74d71e4dba9d7eaa.tar.gz
lumina-950c4ebc4343452dc6f99a9c74d71e4dba9d7eaa.tar.bz2
lumina-950c4ebc4343452dc6f99a9c74d71e4dba9d7eaa.zip
Just a bit of cleanup in libLumina and adjust the deskopview plugin a bit for non-valid *.desktop files.
Diffstat (limited to 'libLumina/LuminaX11.h')
-rw-r--r--libLumina/LuminaX11.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libLumina/LuminaX11.h b/libLumina/LuminaX11.h
index c2e27dcd..cd5f8183 100644
--- a/libLumina/LuminaX11.h
+++ b/libLumina/LuminaX11.h
@@ -91,8 +91,8 @@ public:
static QString WindowVisibleName(WId); // long name (translated)
static QString WindowIconName(WId); // short name (untranslated)
static QString WindowVisibleIconName(WId); // short name (translated)
- static QIcon WindowIcon(WId); // Icon for the window
- static QPixmap WindowImage(WId win, bool useleader=true); // Image for the window
+ //static QIcon WindowIcon(WId); // Icon for the window
+ //static QPixmap WindowImage(WId win, bool useleader=true); // Image for the window
static int WindowDesktop(WId); // Which virtual desktop the window is on
static WINDOWSTATE GetWindowState(WId win); //State of activity
static WId leaderWindow(WId); //Get the main window if this one is a redirect
@@ -139,7 +139,7 @@ public:
QString WindowName(WId win); //_WM_NAME
bool WindowIsMaximized(WId win);
QIcon WindowIcon(WId win); //_NET_WM_ICON
- QPixmap WindowImage(WId win, bool useleader=true); //Pull the image directly from the window
+ QPixmap WindowImage(WId win); //Pull the image directly from the window
//Window Modification
void SetAsSticky(WId); //Stick to all workspaces
bgstack15