aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/LWinInfo.h
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-11-12 14:25:06 -0500
committerKen Moore <moorekou@gmail.com>2015-11-12 14:25:06 -0500
commitac4dd2a253d5e7aa5972d80d49cf643ac0111e6a (patch)
tree76514186dd518c14203f812917a02ec0dd50a8fb /lumina-desktop/LWinInfo.h
parentRemove a geometry-match condition when re-loading the desktop canvas's. This ... (diff)
downloadlumina-ac4dd2a253d5e7aa5972d80d49cf643ac0111e6a.tar.gz
lumina-ac4dd2a253d5e7aa5972d80d49cf643ac0111e6a.tar.bz2
lumina-ac4dd2a253d5e7aa5972d80d49cf643ac0111e6a.zip
Add a couple more XCB EWMH functions. One change required a re-definition of an enumeration (WINDOWSTATE -> WINDOWVISIBILITY), so I fixed the usage of that enum in the lumina-desktop project as well.
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 b483e87e..3d2ea65a 100644
--- a/lumina-desktop/LWinInfo.h
+++ b/lumina-desktop/LWinInfo.h
@@ -25,7 +25,7 @@
class LWinInfo{
private:
WId window;
- LXCB::WINDOWSTATE cstate; //current window state
+ LXCB::WINDOWVISIBILITY cstate; //current window state
public:
LWinInfo(WId id = 0){
@@ -44,7 +44,7 @@ public:
QString text();
QIcon icon(bool &noicon);
QString Class();
- LXCB::WINDOWSTATE status(bool update = false);
+ LXCB::WINDOWVISIBILITY status(bool update = false);
};
#endif \ No newline at end of file
bgstack15