From 85d9932824853a4567bf37d6ed2f6d2ab2b6ba05 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Fri, 8 Jan 2016 16:54:43 -0500 Subject: 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. --- lumina-desktop/AppMenu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lumina-desktop') 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); -- cgit