aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/libLumina/RootSubWindow.h
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-07-13 14:02:59 -0400
committerKen Moore <ken@ixsystems.com>2017-07-13 14:04:25 -0400
commit6a2af03c68033a9683de619b4ae6493a4f7254b7 (patch)
treeea0d5ca678e1177c3efa546664d09557c4849727 /src-qt5/core/libLumina/RootSubWindow.h
parentinital commit of the lumina-theme-engine (diff)
downloadlumina-6a2af03c68033a9683de619b4ae6493a4f7254b7.tar.gz
lumina-6a2af03c68033a9683de619b4ae6493a4f7254b7.tar.bz2
lumina-6a2af03c68033a9683de619b4ae6493a4f7254b7.zip
Large update to the window embedding systems - almost have the compositing up and running.
Diffstat (limited to 'src-qt5/core/libLumina/RootSubWindow.h')
-rw-r--r--src-qt5/core/libLumina/RootSubWindow.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src-qt5/core/libLumina/RootSubWindow.h b/src-qt5/core/libLumina/RootSubWindow.h
index bd20291e..cef6f2ff 100644
--- a/src-qt5/core/libLumina/RootSubWindow.h
+++ b/src-qt5/core/libLumina/RootSubWindow.h
@@ -20,7 +20,7 @@
#include <QMenu>
#include <QPropertyAnimation>
#include <NativeWindow.h>
-
+#include <NativeEmbedWidget.h>
class RootSubWindow : public QFrame{
Q_OBJECT
@@ -41,7 +41,7 @@ private:
void setMouseCursor(ModState, bool override = false); //Update the mouse cursor based on state
//Native window embed objects
NativeWindow *WIN;
- QWidget *WinWidget;
+ NativeEmbedWidget *WinWidget;
bool closing;
//Title bar objects
QBoxLayout *titleBar, *mainLayout;
bgstack15