aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/LWinInfo.h
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-01-01 10:18:35 -0500
committerKen Moore <ken@pcbsd.org>2015-01-01 10:18:35 -0500
commit64c9ecca216ce03287908c510a7af3adff112832 (patch)
treeebfdb821a450121a8ebd9352b2c57ce0cdd3d0ef /lumina-desktop/LWinInfo.h
parentMake sure that any argv[] -> QString translations from CLI input are run thro... (diff)
downloadlumina-64c9ecca216ce03287908c510a7af3adff112832.tar.gz
lumina-64c9ecca216ce03287908c510a7af3adff112832.tar.bz2
lumina-64c9ecca216ce03287908c510a7af3adff112832.zip
Large update of XLib -> XCB usage
1) Add ability for task manager to minimize/maximize window from details menu 2) Add quick check/movement of new windows to make sure they are not underneath any panels
Diffstat (limited to 'lumina-desktop/LWinInfo.h')
-rw-r--r--lumina-desktop/LWinInfo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lumina-desktop/LWinInfo.h b/lumina-desktop/LWinInfo.h
index 8fb70ee2..a90b82c6 100644
--- a/lumina-desktop/LWinInfo.h
+++ b/lumina-desktop/LWinInfo.h
@@ -18,7 +18,7 @@
#include <LuminaXDG.h>
// Local includes
-#include "Globals.h" //For the STATES enumeration definition
+//#include "Globals.h" //For the STATES enumeration definition
//#include "LSession.h"
@@ -42,7 +42,7 @@ public:
QString text();
QIcon icon(bool &noicon);
QString Class();
- Lumina::STATES status();
+ LXCB::WINDOWSTATE status();
};
#endif \ No newline at end of file
bgstack15