clearer menaning for id parameters

marchId and RunnerId vs just id
This commit is contained in:
Marco Martin 2013-04-02 13:47:29 +02:00
parent b1ce94159d
commit 6083840313
2 changed files with 5 additions and 5 deletions

View File

@ -601,9 +601,9 @@ QList<QueryMatch> RunnerManager::matches() const
return d->context.matches(); return d->context.matches();
} }
void RunnerManager::run(const QString &id) void RunnerManager::run(const QString &matchId)
{ {
run(d->context.match(id)); run(d->context.match(matchId));
} }
void RunnerManager::run(const QueryMatch &match) void RunnerManager::run(const QueryMatch &match)

View File

@ -57,10 +57,10 @@ class PLASMA_EXPORT RunnerManager : public QObject
/** /**
* Finds and returns a loaded runner or NULL * Finds and returns a loaded runner or NULL
* @param name the name of the runner * @param pluginName the name of the runner plugin
* @return Pointer to the runner * @return Pointer to the runner
*/ */
AbstractRunner *runner(const QString &name) const; AbstractRunner *runner(const QString &pluginName) const;
/** /**
* @return the currently active "single mode" runner, or null if none * @return the currently active "single mode" runner, or null if none
@ -203,7 +203,7 @@ class PLASMA_EXPORT RunnerManager : public QObject
* @return mime data of the specified match * @return mime data of the specified match
* @since 4.5 * @since 4.5
*/ */
QMimeData * mimeDataForMatch(const QString &id) const; QMimeData * mimeDataForMatch(const QString &matchId) const;
/** /**
* Returns a list of all known Runner implementations * Returns a list of all known Runner implementations