diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:25:56 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:25:56 -0600 |
commit | 543fa670b11b8990e54233d52bddc9840b45ac6d (patch) | |
tree | 5fd8993d92fdbdffecd24af91767569e75026deb /qtinterface/qt4/Qt/qtestaccessible.h | |
parent | 0076a6194c579137f4606b250e745f77b9e669ea (diff) | |
download | tqtinterface-543fa670b11b8990e54233d52bddc9840b45ac6d.tar.gz tqtinterface-543fa670b11b8990e54233d52bddc9840b45ac6d.zip |
Rename additional global TQt functions
Diffstat (limited to 'qtinterface/qt4/Qt/qtestaccessible.h')
-rw-r--r-- | qtinterface/qt4/Qt/qtestaccessible.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/qtinterface/qt4/Qt/qtestaccessible.h b/qtinterface/qt4/Qt/qtestaccessible.h index e9ad6fb..ff9f79f 100644 --- a/qtinterface/qt4/Qt/qtestaccessible.h +++ b/qtinterface/qt4/Qt/qtestaccessible.h @@ -90,7 +90,7 @@ public: { if (!instance()) { instance() = new QTestAccessibility; - qAddPostRoutine(cleanup); + tqAddPostRoutine(cleanup); } } static void cleanup() @@ -127,19 +127,19 @@ private: static void rootObjectHandler(QObject *object) { - // qDebug("rootObjectHandler called %p", object); + // tqDebug("rootObjectHandler called %p", object); if (object) { QApplication* app = qobject_cast<QApplication*>(object); if ( !app ) - qWarning("QTEST_ACCESSIBILITY: root Object is not a QApplication!"); + tqWarning("QTEST_ACCESSIBILITY: root Object is not a QApplication!"); } else { - qWarning("QTEST_ACCESSIBILITY: root Object called with 0 pointer"); + tqWarning("QTEST_ACCESSIBILITY: root Object called with 0 pointer"); } } static void updateHandler(QObject *o, int c, QAccessible::Event e) { - // qDebug("updateHandler called: %p %d %d", o, c, (int)e); + // tqDebug("updateHandler called: %p %d %d", o, c, (int)e); eventList().append(QTestAccessibilityEvent(o, c, (int)e)); } |