aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/panel-plugins/taskmanager
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-08-05 09:30:14 -0400
committerKen Moore <moorekou@gmail.com>2015-08-05 09:30:14 -0400
commit57230742d2edde716e90e3cb8413744909054c4f (patch)
tree9ecb827de44742bd8aa72e90caaf6b830b857aa4 /lumina-desktop/panel-plugins/taskmanager
parentOops, committed a temporary change to include the xcb-render library (not nec... (diff)
downloadlumina-57230742d2edde716e90e3cb8413744909054c4f.tar.gz
lumina-57230742d2edde716e90e3cb8413744909054c4f.tar.bz2
lumina-57230742d2edde716e90e3cb8413744909054c4f.zip
Finish converting libLumina to XCB-only and finish replacing any LX11 functions in lumina-desktop.
Diffstat (limited to 'lumina-desktop/panel-plugins/taskmanager')
-rw-r--r--lumina-desktop/panel-plugins/taskmanager/LTaskManagerPlugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-desktop/panel-plugins/taskmanager/LTaskManagerPlugin.cpp b/lumina-desktop/panel-plugins/taskmanager/LTaskManagerPlugin.cpp
index 9da86da8..79a164b8 100644
--- a/lumina-desktop/panel-plugins/taskmanager/LTaskManagerPlugin.cpp
+++ b/lumina-desktop/panel-plugins/taskmanager/LTaskManagerPlugin.cpp
@@ -84,7 +84,7 @@ void LTaskManagerPlugin::UpdateButtons(){
//New windows, create buttons for each (add grouping later)
if(updating > ctime){ return; } //another thread kicked off already - stop this one
//Check for a button that this can just be added to
- QString ctxt = LX11::WindowClass(winlist[i]);
+ QString ctxt = LSession::handle()->XCB->WindowClass(winlist[i]);
bool found = false;
for(int b=0; b<BUTTONS.length(); b++){
if(updating > ctime){ return; } //another thread kicked off already - stop this one
bgstack15