diff options
author | Ken Moore <ken@pcbsd.org> | 2015-06-14 18:27:45 -0400 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2015-06-14 18:27:45 -0400 |
commit | 5f537166a4af31db171711d9cedeb318ac7443b5 (patch) | |
tree | e08c446ab3622e709d2aa75ec10ec67a91fc195f /lumina-desktop/desktop-plugins/NewDP.h | |
parent | Re-work quite a bit of the background procedures for desktop plugins and watc... (diff) | |
download | lumina-5f537166a4af31db171711d9cedeb318ac7443b5.tar.gz lumina-5f537166a4af31db171711d9cedeb318ac7443b5.tar.bz2 lumina-5f537166a4af31db171711d9cedeb318ac7443b5.zip |
Disable some debugging and fix up the context menu on the applauncher plugins.
Diffstat (limited to 'lumina-desktop/desktop-plugins/NewDP.h')
-rw-r--r-- | lumina-desktop/desktop-plugins/NewDP.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lumina-desktop/desktop-plugins/NewDP.h b/lumina-desktop/desktop-plugins/NewDP.h index d2f9450e..b5881c4e 100644 --- a/lumina-desktop/desktop-plugins/NewDP.h +++ b/lumina-desktop/desktop-plugins/NewDP.h @@ -26,7 +26,7 @@ class NewDP{ public: static LDPlugin* createPlugin(QString plugin, QWidget* parent=0){ - qDebug() << "Create Plugin:" << plugin; + //qDebug() << "Create Plugin:" << plugin; LDPlugin *plug = 0; if(plugin.section("---",0,0)=="sample"){ plug = new SamplePlugin(parent, plugin); @@ -50,7 +50,7 @@ public: }else{ qWarning() << "Invalid Desktop Plugin:"<<plugin << " -- Ignored"; } - qDebug() << " -- done"; + //qDebug() << " -- done"; return plug; } |