aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-01-08 16:54:43 -0500
committerKen Moore <moorekou@gmail.com>2016-01-08 16:54:43 -0500
commit85d9932824853a4567bf37d6ed2f6d2ab2b6ba05 (patch)
tree77e8828b83ea3b5da4d33f0e52b7588a882bf600 /lumina-desktop
parentSetup the dialog to use for file operation errors as the scroll dialog (in ca... (diff)
downloadlumina-85d9932824853a4567bf37d6ed2f6d2ab2b6ba05.tar.gz
lumina-85d9932824853a4567bf37d6ed2f6d2ab2b6ba05.tar.bz2
lumina-85d9932824853a4567bf37d6ed2f6d2ab2b6ba05.zip
Start the work of abstracting out the OS-detection/build system from the individual projects. Currently used for the library mainly - still working on fleshing it out before switching all the project files to use it.
Diffstat (limited to 'lumina-desktop')
-rw-r--r--lumina-desktop/AppMenu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-desktop/AppMenu.cpp b/lumina-desktop/AppMenu.cpp
index f38d7d85..14af988a 100644
--- a/lumina-desktop/AppMenu.cpp
+++ b/lumina-desktop/AppMenu.cpp
@@ -49,7 +49,7 @@ void AppMenu::updateAppList(){
//--Look for the app store
XDGDesktop store = LXDG::loadDesktopFile(appstorelink, ok);
if(ok){
- this->addAction( LXDG::findIcon(store.icon, ""), tr("Install Applications"), this, SLOT(launchStore()) );
+ this->addAction( LXDG::findIcon(store.icon, ""), tr("Manage Applications"), this, SLOT(launchStore()) );
}
//--Look for the control panel
store = LXDG::loadDesktopFile(controlpanellink, ok);
bgstack15