aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop-unified/src-desktop/RootWindow.h
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2018-01-30 05:49:30 -0500
committerKen Moore <ken@ixsystems.com>2018-01-30 05:49:30 -0500
commitfc138f1492c0275215327cfe698587916107b69f (patch)
treef1db15573ee9e8ecf7618214cf28f381ba6c0632 /src-qt5/core/lumina-desktop-unified/src-desktop/RootWindow.h
parentMerge branch 'master' of github.com:trueos/lumina (diff)
downloadlumina-fc138f1492c0275215327cfe698587916107b69f.tar.gz
lumina-fc138f1492c0275215327cfe698587916107b69f.tar.bz2
lumina-fc138f1492c0275215327cfe698587916107b69f.zip
A few couple other attempts at the layering issue.
Tie-in the new OSInterface class to the QML data store (RootObject). This will allow the new system status functions to be accessible to the QML interface.
Diffstat (limited to 'src-qt5/core/lumina-desktop-unified/src-desktop/RootWindow.h')
-rw-r--r--src-qt5/core/lumina-desktop-unified/src-desktop/RootWindow.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core/lumina-desktop-unified/src-desktop/RootWindow.h b/src-qt5/core/lumina-desktop-unified/src-desktop/RootWindow.h
index 97b57a65..0e48c000 100644
--- a/src-qt5/core/lumina-desktop-unified/src-desktop/RootWindow.h
+++ b/src-qt5/core/lumina-desktop-unified/src-desktop/RootWindow.h
@@ -22,7 +22,7 @@ public:
void start();
- WId viewID(){ return root_view->winId(); }
+ WId viewID(){ return root_view->parent()->winId(); }
public slots:
void syncRootSize();
bgstack15