diff options
author | william <william.os4y@gmail.com> | 2015-03-26 19:18:45 +0100 |
---|---|---|
committer | william <william.os4y@gmail.com> | 2015-03-26 19:18:45 +0100 |
commit | 851c91e92ef57de3cdec582048a134ff5b5552f8 (patch) | |
tree | 8d7119048c2ca9b3f60c9a8a2f5699f6a18eb1b2 /lumina-desktop/panel-plugins/NewPP.h | |
parent | Warn the user is they want to change a elemnt having translated values. (diff) | |
parent | Actually move the file/dir copy onto itself check earlier in the procedure, t... (diff) | |
download | lumina-851c91e92ef57de3cdec582048a134ff5b5552f8.tar.gz lumina-851c91e92ef57de3cdec582048a134ff5b5552f8.tar.bz2 lumina-851c91e92ef57de3cdec582048a134ff5b5552f8.zip |
Merge remote-tracking branch 'upstream/master' into deskEditor
Diffstat (limited to 'lumina-desktop/panel-plugins/NewPP.h')
-rw-r--r-- | lumina-desktop/panel-plugins/NewPP.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lumina-desktop/panel-plugins/NewPP.h b/lumina-desktop/panel-plugins/NewPP.h index 6c5c369c..3a593629 100644 --- a/lumina-desktop/panel-plugins/NewPP.h +++ b/lumina-desktop/panel-plugins/NewPP.h @@ -23,6 +23,7 @@ #include "systemdashboard/LSysDashboard.h" #include "showdesktop/LHomeButton.h" #include "appmenu/LAppMenuPlugin.h" +#include "applauncher/AppLaunchButton.h" #include "systemtray/LSysTray.h" //must be last due to X11 compile issues class NewPP{ @@ -52,6 +53,8 @@ public: plug = new LSysDashboard(parent, plugin, horizontal); }else if(plugin.startsWith("appmenu---")){ plug = new LAppMenuPlugin(parent, plugin, horizontal); + }else if(plugin.section("---",0,0).section("::",0,0)=="applauncher"){ + plug = new AppLaunchButtonPlugin(parent, plugin, horizontal); }else{ qWarning() << "Invalid Panel Plugin:"<<plugin << " -- Ignored"; } |