aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/panel-plugins/appmenu
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-12-01 16:44:32 -0500
committerKen Moore <moorekou@gmail.com>2015-12-01 16:44:32 -0500
commit2f521da9aa36926f5dc451a82ab68fd98d04aefd (patch)
tree77ded8c753cf87708d341880e8e38325a622b8c9 /lumina-desktop/panel-plugins/appmenu
parentAdd a link to the Lumina IRC channel in the lumina-info utility, and also cre... (diff)
downloadlumina-2f521da9aa36926f5dc451a82ab68fd98d04aefd.tar.gz
lumina-2f521da9aa36926f5dc451a82ab68fd98d04aefd.tar.bz2
lumina-2f521da9aa36926f5dc451a82ab68fd98d04aefd.zip
Fix up the loading of locales through the StartMenu/Session. Now it will properly make the locale changes *if* it could properly load the locale (ensuring consistency between system/session).
Diffstat (limited to 'lumina-desktop/panel-plugins/appmenu')
-rw-r--r--lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.cpp b/lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.cpp
index 5e8dc7ac..318d03fa 100644
--- a/lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.cpp
+++ b/lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.cpp
@@ -21,7 +21,7 @@ LAppMenuPlugin::LAppMenuPlugin(QWidget *parent, QString id, bool horizontal) : L
connect(mainmenu, SIGNAL(aboutToHide()), this, SIGNAL(MenuClosed()));
connect(mainmenu, SIGNAL(triggered(QAction*)), this, SLOT(LaunchItem(QAction*)) );
- connect(LSession::handle()->applicationMenu(), SIGNAL(AppMenuUpdated()), this, SIGNAL(UpdateMenu()));
+ connect(LSession::handle()->applicationMenu(), SIGNAL(AppMenuUpdated()), this, SLOT(UpdateMenu()));
QTimer::singleShot(0,this, SLOT(OrientationChange())); //Update icons/sizes
QTimer::singleShot(0,this, SLOT(UpdateMenu()) );
}
bgstack15