From 20805c6ea8c5de12f06985eb54f649d53aed53f8 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Fri, 31 Jul 2015 10:25:49 -0400 Subject: Oops, fix a typo in the LDesktop conversion to XCB --- lumina-desktop/LDesktop.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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( ""+tr("Lumina Desktop")+""); } else{ workspacelabel->setText( ""+QString(tr("Workspace %1")).arg(QString::number(num+1))+""); } -- cgit