┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/views/versioncontrol
diff options
context:
space:
mode:
authorEmmanuel Pescosta <[email protected]>2015-02-24 13:07:35 +0100
committerEmmanuel Pescosta <[email protected]>2015-02-24 13:07:35 +0100
commit169cca55b9621689712321da8c0425f8002d0008 (patch)
tree7035935aeb94de3a2c3872ee5fed914c80e41db2 /src/views/versioncontrol
parent6d9f5b21315bf7c9f6b08e32a89346e22c482714 (diff)
Replace kDebug/kWarning by categorized logging (org.kde.dolphin)
Diffstat (limited to 'src/views/versioncontrol')
-rw-r--r--src/views/versioncontrol/versioncontrolobserver.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/views/versioncontrol/versioncontrolobserver.cpp b/src/views/versioncontrol/versioncontrolobserver.cpp
index 79ba8dcc4..47e3da357 100644
--- a/src/views/versioncontrol/versioncontrolobserver.cpp
+++ b/src/views/versioncontrol/versioncontrolobserver.cpp
@@ -23,7 +23,7 @@
#include <KLocalizedString>
#include <KService>
-#include <KDebug>
+#include "dolphindebug.h"
#include <KServiceTypeTrader>
#include <kitemviews/kfileitemmodel.h>
#include <kversioncontrolplugin2.h>
@@ -94,7 +94,7 @@ QList<QAction*> VersionControlObserver::actions(const KFileItemList& items) cons
bool hasNullItems = false;
foreach (const KFileItem& item, items) {
if (item.isNull()) {
- kWarning() << "Requesting version-control-actions for empty items";
+ qCWarning(DolphinDebug) << "Requesting version-control-actions for empty items";
hasNullItems = true;
break;
}