aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/libLumina/NativeWindow.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-02-01 16:13:52 -0500
committerKen Moore <ken@ixsystems.com>2017-02-01 16:13:52 -0500
commit014ce3d9363b15912a53cc8885358b0436b3bb27 (patch)
tree3fba59a0ffedadac98cb904db64c10ccc29417a0 /src-qt5/core/libLumina/NativeWindow.cpp
parentAdd a new "NativeWindow" class to the library. This is a pure Qt container cl... (diff)
downloadlumina-014ce3d9363b15912a53cc8885358b0436b3bb27.tar.gz
lumina-014ce3d9363b15912a53cc8885358b0436b3bb27.tar.bz2
lumina-014ce3d9363b15912a53cc8885358b0436b3bb27.zip
Another large batch of work on Lumina2:
The NativeWindow intermediary seems to be working really well, now just to start adding the the various event detection parsing in to modify that object on-demand. There is still a window focus issue too - the setActive routine is not properly setting that window to have focus yet - need to examine further.
Diffstat (limited to 'src-qt5/core/libLumina/NativeWindow.cpp')
-rw-r--r--src-qt5/core/libLumina/NativeWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core/libLumina/NativeWindow.cpp b/src-qt5/core/libLumina/NativeWindow.cpp
index eb85e394..bd42ecaa 100644
--- a/src-qt5/core/libLumina/NativeWindow.cpp
+++ b/src-qt5/core/libLumina/NativeWindow.cpp
@@ -14,7 +14,7 @@ NativeWindow::NativeWindow(WId id) : QObject(){
NativeWindow::~NativeWindow(){
hash.clear();
- WIN->deleteLater();
+ //WIN->deleteLater(); //This class only deals with Native windows which were created outside the app - they need to be cleaned up outside the app too
}
WId NativeWindow::id(){
bgstack15