diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:33:40 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:33:40 -0600 |
commit | 4fb897b216c41c13f128c71bcc66f60e2dc601c4 (patch) | |
tree | 2891b54cd6ec39db133da0110028ec93fc006751 /tdecore/tests/cplusplustest.cpp | |
parent | 8fc8811ef6079a15decd33f1ea5d95dd718e4557 (diff) | |
download | tdelibs-4fb897b216c41c13f128c71bcc66f60e2dc601c4.tar.gz tdelibs-4fb897b216c41c13f128c71bcc66f60e2dc601c4.zip |
Rename additional global TQt functions
Diffstat (limited to 'tdecore/tests/cplusplustest.cpp')
-rw-r--r-- | tdecore/tests/cplusplustest.cpp | 10 |
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"); } |