Fix debug build

Fix a pointer-dereference of a non-pointer variable.
This commit is contained in:
Alex Merry 2013-05-11 12:24:24 +01:00 committed by Marco Martin
parent 749d8d900c
commit ba1a7d0d35

View File

@ -236,7 +236,7 @@ ServiceJob *Service::startOperationCall(const QVariantMap &description, QObject
}
} else {
#ifndef NDEBUG
kDebug() << op << "is not a valid group; valid groups are:" << d->operationsMap->keys();
kDebug() << op << "is not a valid group; valid groups are:" << d->operationsMap.keys();
#endif
}