mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-23 18:32:53 +00:00
gwenview: replace qDebug() with kDebug() calls
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
eb2e36d7d4
commit
e85564830f
1 changed files with 5 additions and 5 deletions
|
@ -50,18 +50,18 @@ static void logQueue(DocumentPrivate* d)
|
|||
#define PREFIX " QUEUE: "
|
||||
if (!d->mCurrentJob) {
|
||||
Q_ASSERT(d->mJobQueue.isEmpty());
|
||||
qDebug(PREFIX "No current job, no pending jobs");
|
||||
kDebug() << PREFIX "No current job, no pending jobs";
|
||||
return;
|
||||
}
|
||||
qDebug() << PREFIX "Current job:" << d->mCurrentJob.data();
|
||||
kDebug() << PREFIX "Current job:" << d->mCurrentJob.data();
|
||||
if (d->mJobQueue.isEmpty()) {
|
||||
qDebug(PREFIX "No pending jobs");
|
||||
kDebug() << PREFIX "No pending jobs";
|
||||
return;
|
||||
}
|
||||
qDebug(PREFIX "%d pending job(s):", d->mJobQueue.size());
|
||||
kDebug() << PREFIX "%d pending job(s):", d->mJobQueue.size();
|
||||
Q_FOREACH(DocumentJob* job, d->mJobQueue) {
|
||||
Q_ASSERT(job);
|
||||
qDebug() << PREFIX "-" << job;
|
||||
kDebug() << PREFIX "-" << job;
|
||||
}
|
||||
#undef PREFIX
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue