remove const to match AbstractRunner
svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=778873
This commit is contained in:
parent
bfbea8235d
commit
0fb0b0f613
@ -51,13 +51,14 @@ AbstractRunner* RunnerScript::runner() const
|
||||
return d->runner;
|
||||
}
|
||||
|
||||
void RunnerScript::match(const Plasma::SearchContext *search)
|
||||
void RunnerScript::match(Plasma::SearchContext *search)
|
||||
{
|
||||
Q_UNUSED(search)
|
||||
}
|
||||
|
||||
void RunnerScript::exec(const Plasma::SearchContext *search, const Plasma::SearchMatch *action)
|
||||
{
|
||||
Q_UNUSED(search)
|
||||
Q_UNUSED(action)
|
||||
}
|
||||
|
||||
|
@ -60,7 +60,7 @@ public:
|
||||
* SearchContext::addInformationalMatch, SearchContext::addExactMatch, and
|
||||
* SearchContext::addPossibleMatch.
|
||||
*/
|
||||
virtual void match(const Plasma::SearchContext *search);
|
||||
virtual void match(Plasma::SearchContext *search);
|
||||
|
||||
/**
|
||||
* Called whenever an exact or possible match associated with this
|
||||
|
Loading…
Reference in New Issue
Block a user