summaryrefslogtreecommitdiffstats
path: root/tdecore/tests/cplusplustest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdecore/tests/cplusplustest.cpp')
-rw-r--r--tdecore/tests/cplusplustest.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/tdecore/tests/cplusplustest.cpp b/tdecore/tests/cplusplustest.cpp
index 1f789fea7..288263256 100644
--- a/tdecore/tests/cplusplustest.cpp
+++ b/tdecore/tests/cplusplustest.cpp
@@ -32,13 +32,13 @@ int main(int , char *[])
A *pA = &obj;
B *pB = &obj;
C *pC = &obj;
-qWarning("pA = %p, pB = %p, pC = %p", pA, pB, pC);
- if (pA == pC) qWarning("pA == pC");
- if (pB == pC) qWarning("pB == pC");
+tqWarning("pA = %p, pB = %p, pC = %p", pA, pB, pC);
+ if (pA == pC) tqWarning("pA == pC");
+ if (pB == pC) tqWarning("pB == pC");
dictA.insert("hello", pC);
dictB.insert("hello", pC);
- if (dictA["hello"] == pC) qWarning("dictA['hello'] == pC");
- if (dictB["hello"] == pC) qWarning("dictB['hello'] == pC");
+ if (dictA["hello"] == pC) tqWarning("dictA['hello'] == pC");
+ if (dictB["hello"] == pC) tqWarning("dictB['hello'] == pC");
}