diff options
author | Ken Moore <ken@ixsystems.com> | 2017-02-01 11:52:09 -0500 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2017-02-01 11:52:09 -0500 |
commit | 11918f54e194807c8ed6988c70306d883c8e9054 (patch) | |
tree | 1b6e3a1974aac02515b06e6b0a2c03161fddd125 /src-qt5/core/lumina-desktop-unified | |
parent | Silence a file watcher warning when opening a blank or new file. (diff) | |
download | lumina-11918f54e194807c8ed6988c70306d883c8e9054.tar.gz lumina-11918f54e194807c8ed6988c70306d883c8e9054.tar.bz2 lumina-11918f54e194807c8ed6988c70306d883c8e9054.zip |
Add a new "NativeWindow" class to the library. This is a pure Qt container class for setting/announcing changes to native windows on the system. This allows the WM class (XCB/Wayland-specific) to simply adjust each window object as needed, and the interface (pure Qt) will automatically adjust as needed.
NOTE: Still need to adjust the LXCBEventFilter to use this new class, but the root window and rootsubwindow classes are all setup to use it.
Diffstat (limited to 'src-qt5/core/lumina-desktop-unified')
-rw-r--r-- | src-qt5/core/lumina-desktop-unified/LSession.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core/lumina-desktop-unified/LSession.cpp b/src-qt5/core/lumina-desktop-unified/LSession.cpp index 706c6006..ea72bc7b 100644 --- a/src-qt5/core/lumina-desktop-unified/LSession.cpp +++ b/src-qt5/core/lumina-desktop-unified/LSession.cpp @@ -24,7 +24,7 @@ RootWindow* Lumina::ROOTWIN = 0; XDGDesktopList* Lumina::APPLIST = 0; LShortcutEvents* Lumina::SHORTCUTS = 0; -LSession::LSession(int &argc, char ** argv) : LSingleApplication(argc, argv, "lumina-desktop"){ +LSession::LSession(int &argc, char ** argv) : LSingleApplication(argc, argv, "lumina-desktop-unified"){ //Initialize the global objects to null pointers mediaObj = 0; //private object used for playing login/logout chimes if(this->isPrimaryProcess()){ |