diff --git a/plasma/runners/locations/locationrunner.cpp b/plasma/runners/locations/locationrunner.cpp index b6f54158..ffc10a26 100644 --- a/plasma/runners/locations/locationrunner.cpp +++ b/plasma/runners/locations/locationrunner.cpp @@ -71,15 +71,6 @@ void LocationsRunner::match(Plasma::RunnerContext &context) match.setId("openfile"); } context.addMatch(match); - } else if (type == Plasma::RunnerContext::Help) { - //kDebug() << "Locations matching because of" << type; - Plasma::QueryMatch match(this); - match.setText(i18n("Open %1", term)); - match.setIcon(KIcon("system-help")); - match.setData(term); - match.setRelevance(1); - match.setId("help"); - context.addMatch(match); } else if (type == Plasma::RunnerContext::NetworkLocation || type == Plasma::RunnerContext::UnknownType) { const bool filtered = KUriFilter::self()->filterUri(term, QStringList() << QLatin1String("kshorturifilter")); diff --git a/plasma/runners/powerdevil/PowerDevilRunner.cpp b/plasma/runners/powerdevil/PowerDevilRunner.cpp index adc752ef..e74e1adb 100644 --- a/plasma/runners/powerdevil/PowerDevilRunner.cpp +++ b/plasma/runners/powerdevil/PowerDevilRunner.cpp @@ -33,7 +33,7 @@ PowerDevilRunner::PowerDevilRunner(QObject *parent, const QVariantList &args) setObjectName(QLatin1String("PowerDevil")); setIgnoredTypes( Plasma::RunnerContext::Directory | Plasma::RunnerContext::File | - Plasma::RunnerContext::NetworkLocation | Plasma::RunnerContext::Help + Plasma::RunnerContext::NetworkLocation ); updateStatus(); diff --git a/plasma/runners/shell/shellrunner.cpp b/plasma/runners/shell/shellrunner.cpp index 437b1fbc..d86700cf 100644 --- a/plasma/runners/shell/shellrunner.cpp +++ b/plasma/runners/shell/shellrunner.cpp @@ -33,9 +33,10 @@ ShellRunner::ShellRunner(QObject *parent, const QVariantList &args) { setObjectName( QLatin1String("Command" )); setPriority(AbstractRunner::HighestPriority); - setIgnoredTypes(Plasma::RunnerContext::Directory | Plasma::RunnerContext::File | - Plasma::RunnerContext::NetworkLocation | Plasma::RunnerContext::UnknownType | - Plasma::RunnerContext::Help); + setIgnoredTypes( + Plasma::RunnerContext::Directory | Plasma::RunnerContext::File | + Plasma::RunnerContext::NetworkLocation | Plasma::RunnerContext::UnknownType + ); addSyntax(Plasma::RunnerSyntax(":q:", i18n("Finds commands that match :q:, using common shell syntax"))); }