summaryrefslogtreecommitdiff
path: root/deskutils/metabar/files/patch-defaultplugin.cpp
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2013-07-26 19:19:20 +0000
committerRene Ladan <rene@FreeBSD.org>2013-07-26 19:19:20 +0000
commit66fee909266a1dedf3dfc1f03bb0841380d78805 (patch)
tree4c98d494bc4532b5dd5b19f4e47bcb3babf104c2 /deskutils/metabar/files/patch-defaultplugin.cpp
parentRemove support for Qt3/kde in preparation for full Qt3/kde3 removal (diff)
KDE3 and QT3 expired on 2013-07-01, remove these ports.
Unfortunately, this also affects some ports using QT3 as a GUI toolkit. Changes to infrastructure files: - bsd.kde.mk : obsolete, remove - bsd.qt.mk : note that a CONFLICTS_BUILD line can probably go after a while - CHANGES : document the removals from bsd.port.mk - KNOBS : remove KDE and QT (KDE4 and QT4 should be used instead) - MOVED : add the removed ports PR: ports/180745 Submitted by: rene Approved by: portmgr (bapt) Exp-run by: bapt
Notes
Notes: svn path=/head/; revision=323748
Diffstat (limited to 'deskutils/metabar/files/patch-defaultplugin.cpp')
-rw-r--r--deskutils/metabar/files/patch-defaultplugin.cpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/deskutils/metabar/files/patch-defaultplugin.cpp b/deskutils/metabar/files/patch-defaultplugin.cpp
deleted file mode 100644
index 9bf1a02f6144..000000000000
--- a/deskutils/metabar/files/patch-defaultplugin.cpp
+++ /dev/null
@@ -1,29 +0,0 @@
---- src/defaultplugin.cpp.orig Wed Jul 13 20:33:54 2005
-+++ src/defaultplugin.cpp Wed Jul 13 20:34:49 2005
-@@ -99,7 +99,7 @@
- for(QStringList::Iterator it = actions.begin(); it != actions.end(); ++it){
- if((*it).startsWith("metabar/")){
- if((*it).right((*it).length() - 8) == "share"){
-- MetabarWidget::addEntry(innerHTML, i18n("Share"), "action://" + *it, "network", QString::null, actionCount < maxActions ? QString::null : "hiddenaction", actionCount >= maxActions);
-+ MetabarWidget::addEntry(innerHTML, i18n("Share"), "action://" + *it, "network", QString::null, actionCount < maxActions ? QString::null : QString("hiddenaction"), actionCount >= maxActions);
- actionCount++;
- }
- }
-@@ -111,7 +111,7 @@
- QString text = action.call("plainText()");
- QString icon = iconConfig.readEntry(*it, action.call("icon()"));
-
-- MetabarWidget::addEntry(innerHTML, text, "action://" + *it, icon, QString::null, actionCount < maxActions ? QString::null : "hiddenaction", actionCount >= maxActions);
-+ MetabarWidget::addEntry(innerHTML, text, "action://" + *it, icon, QString::null, actionCount < maxActions ? QString::null : QString("hiddenaction"), actionCount >= maxActions);
- actionCount++;
- }
- }
-@@ -184,7 +184,7 @@
- nam.setNum(id);
-
- bool hide = id >= max;
-- MetabarWidget::addEntry(innerHTML, (*it)->name(), "exec://" + nam, (*it)->icon(), QString::null, hide ? "hiddenapp" : QString::null, hide);
-+ MetabarWidget::addEntry(innerHTML, (*it)->name(), "exec://" + nam, (*it)->icon(), QString::null, hide ? QString("hiddenapp") : QString::null, hide);
-
- runMap.insert(id, *it);
- id++;