aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-07-31 10:25:49 -0400
committerKen Moore <moorekou@gmail.com>2015-07-31 10:25:49 -0400
commit20805c6ea8c5de12f06985eb54f649d53aed53f8 (patch)
treede4a49de1e6d3d8a468968afca1117d16a343643 /lumina-desktop
parentMove all the X11 usage in LDesktop.cpp to XCB (diff)
downloadlumina-20805c6ea8c5de12f06985eb54f649d53aed53f8.tar.gz
lumina-20805c6ea8c5de12f06985eb54f649d53aed53f8.tar.bz2
lumina-20805c6ea8c5de12f06985eb54f649d53aed53f8.zip
Oops, fix a typo in the LDesktop conversion to XCB
Diffstat (limited to 'lumina-desktop')
-rw-r--r--lumina-desktop/LDesktop.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-desktop/LDesktop.cpp b/lumina-desktop/LDesktop.cpp
index 4732f651..8c2592c7 100644
--- a/lumina-desktop/LDesktop.cpp
+++ b/lumina-desktop/LDesktop.cpp
@@ -349,7 +349,7 @@ void LDesktop::LocaleChanged(){
void LDesktop::UpdateMenu(bool fast){
if(DEBUG){ qDebug() << " - Update Menu:" << desktopnumber; }
//Put a label at the top
- int num = LSession::handle()->XCB->CurrentWorkpace(); //LX11::GetCurrentDesktop();
+ int num = LSession::handle()->XCB->CurrentWorkspace(); //LX11::GetCurrentDesktop();
if(DEBUG){ qDebug() << "Found workspace number:" << num; }
if(num < 0){ workspacelabel->setText( "<b>"+tr("Lumina Desktop")+"</b>"); }
else{ workspacelabel->setText( "<b>"+QString(tr("Workspace %1")).arg(QString::number(num+1))+"</b>"); }
bgstack15