aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/panel-plugins/LTBWidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'lumina-desktop/panel-plugins/LTBWidget.h')
-rw-r--r--lumina-desktop/panel-plugins/LTBWidget.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lumina-desktop/panel-plugins/LTBWidget.h b/lumina-desktop/panel-plugins/LTBWidget.h
index 53ea1be0..560e5811 100644
--- a/lumina-desktop/panel-plugins/LTBWidget.h
+++ b/lumina-desktop/panel-plugins/LTBWidget.h
@@ -18,7 +18,7 @@ class LTBWidget : public QToolButton{
Q_OBJECT
private:
- LXCB::WINDOWSTATE cstate;
+ LXCB::WINDOWVISIBILITY cstate;
//QString rawstyle;
void updateBackground(){
//QString background = "background: transparent; "; //default value
@@ -52,7 +52,7 @@ public:
~LTBWidget(){
}
- void setState(LXCB::WINDOWSTATE newstate){
+ void setState(LXCB::WINDOWVISIBILITY newstate){
cstate = newstate;
updateBackground();
}
bgstack15