diff options
author | Ken Moore <moorekou@gmail.com> | 2016-01-11 15:51:52 -0500 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2016-01-11 15:51:52 -0500 |
commit | 4a94520f2e6eb55f9d651321b15ed638404a66bb (patch) | |
tree | 8d4b3f7d8ec2cf262e4cfc595ab86768b3820f81 /lumina-desktop/SettingsMenu.cpp | |
parent | Start the work of abstracting out the OS-detection/build system from the indi... (diff) | |
download | lumina-4a94520f2e6eb55f9d651321b15ed638404a66bb.tar.gz lumina-4a94520f2e6eb55f9d651321b15ed638404a66bb.tar.bz2 lumina-4a94520f2e6eb55f9d651321b15ed638404a66bb.zip |
Large cleanup of the Lumina project files and OS-detection/support systems.
1) Setup all the subprojects to use the new OS-detect.pri subfile
2) Automatically detect/set the build datetime string for the project when qmake is run.
3) Automatically read/embed the current GIT revision into the Lumina version string
4) Remove the old QtConfig shortcut function from the LuminaOS class (and all templates).
Diffstat (limited to 'lumina-desktop/SettingsMenu.cpp')
-rw-r--r-- | lumina-desktop/SettingsMenu.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lumina-desktop/SettingsMenu.cpp b/lumina-desktop/SettingsMenu.cpp index c3e4371f..540538b5 100644 --- a/lumina-desktop/SettingsMenu.cpp +++ b/lumina-desktop/SettingsMenu.cpp @@ -35,12 +35,12 @@ void SettingsMenu::UpdateMenu(){ act = new QAction( LXDG::findIcon("preferences-other",""), tr("Display"), this); act->setWhatsThis("lumina-xconfig"); this->addAction(act); - QString qtconfig = LOS::QtConfigShortcut(); + /*QString qtconfig = LOS::QtConfigShortcut(); if(QFile::exists(qtconfig) && !qtconfig.isEmpty()){ act = new QAction( LXDG::findIcon("preferences-desktop-theme",""), tr("Window Theme"), this); act->setWhatsThis(qtconfig); this->addAction(act); - } + }*/ QString CONTROLPANEL = LOS::ControlPanelShortcut(); if(QFile::exists(CONTROLPANEL) && !CONTROLPANEL.isEmpty()){ //Now load the info |