diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-02 02:11:27 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-02 02:11:27 -0600 |
commit | 67ac950eb8660dc7f455640ffe77fd36b2fa44af (patch) | |
tree | 025f297b116786a8df77f42a264eaec5ec34be94 /qtinterface/qt4/Qt/qtestaccessible.h | |
parent | 9ba1ac7f1c73233eb133f35babbcbb7f89dabb50 (diff) | |
download | tqtinterface-67ac950eb8660dc7f455640ffe77fd36b2fa44af.tar.gz tqtinterface-67ac950eb8660dc7f455640ffe77fd36b2fa44af.zip |
Undo prior accidental commit
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 ff9f79f..e9ad6fb 100644 --- a/qtinterface/qt4/Qt/qtestaccessible.h +++ b/qtinterface/qt4/Qt/qtestaccessible.h @@ -90,7 +90,7 @@ public: { if (!instance()) { instance() = new QTestAccessibility; - tqAddPostRoutine(cleanup); + qAddPostRoutine(cleanup); } } static void cleanup() @@ -127,19 +127,19 @@ private: static void rootObjectHandler(QObject *object) { - // tqDebug("rootObjectHandler called %p", object); + // qDebug("rootObjectHandler called %p", object); if (object) { QApplication* app = qobject_cast<QApplication*>(object); if ( !app ) - tqWarning("QTEST_ACCESSIBILITY: root Object is not a QApplication!"); + qWarning("QTEST_ACCESSIBILITY: root Object is not a QApplication!"); } else { - tqWarning("QTEST_ACCESSIBILITY: root Object called with 0 pointer"); + qWarning("QTEST_ACCESSIBILITY: root Object called with 0 pointer"); } } static void updateHandler(QObject *o, int c, QAccessible::Event e) { - // tqDebug("updateHandler called: %p %d %d", o, c, (int)e); + // qDebug("updateHandler called: %p %d %d", o, c, (int)e); eventList().append(QTestAccessibilityEvent(o, c, (int)e)); } |