mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-23 18:32:49 +00:00
plasma: log the service monitor engine and location as strings instead of pair
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
913bc263e7
commit
e567fdd4cd
1 changed files with 3 additions and 5 deletions
|
@ -41,11 +41,9 @@ ServiceMonitor::~ServiceMonitor()
|
|||
|
||||
void ServiceMonitor::slotJobFinished(Plasma::ServiceJob *job)
|
||||
{
|
||||
kDebug() << "engine ready!";
|
||||
QString engineName = job->parameters()["EngineName"].toString();
|
||||
QString location = job->destination();
|
||||
QPair<QString, QString> pair(location, engineName);
|
||||
kDebug() << "pair = " << pair;
|
||||
const QString engineName = job->parameters()["EngineName"].toString();
|
||||
const QString location = job->destination();
|
||||
kDebug() << "engine ready!" << engineName << location;
|
||||
}
|
||||
|
||||
void ServiceMonitor::slotServiceReady(Plasma::Service *plasmoidService)
|
||||
|
|
Loading…
Add table
Reference in a new issue