diff options
| author | Emmanuel Pescosta <[email protected]> | 2015-02-24 13:07:35 +0100 |
|---|---|---|
| committer | Emmanuel Pescosta <[email protected]> | 2015-02-24 13:07:35 +0100 |
| commit | 169cca55b9621689712321da8c0425f8002d0008 (patch) | |
| tree | 7035935aeb94de3a2c3872ee5fed914c80e41db2 /src/tests | |
| parent | 6d9f5b21315bf7c9f6b08e32a89346e22c482714 (diff) | |
Replace kDebug/kWarning by categorized logging (org.kde.dolphin)
Diffstat (limited to 'src/tests')
| -rw-r--r-- | src/tests/kstandarditemmodeltest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/kstandarditemmodeltest.cpp b/src/tests/kstandarditemmodeltest.cpp index e83e2031d..ea65cc4ce 100644 --- a/src/tests/kstandarditemmodeltest.cpp +++ b/src/tests/kstandarditemmodeltest.cpp @@ -98,13 +98,13 @@ bool KStandardItemModelTest::isModelConsistent() const for (int i = 0; i < m_model->count(); ++i) { const KStandardItem* item = m_model->item(i); if (!item) { - qWarning() << "Item" << i << "is null"; + qCWarning(DolphinDebug) << "Item" << i << "is null"; return false; } const int itemIndex = m_model->index(item); if (itemIndex != i) { - qWarning() << "Item" << i << "has a wrong index:" << itemIndex; + qCWarning(DolphinDebug) << "Item" << i << "has a wrong index:" << itemIndex; return false; } } |
