diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-02 02:11:59 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-02 02:11:59 -0600 |
commit | 9a75b154bf0732aa3a501b6e31e566e06c5f8a31 (patch) | |
tree | df1e10cc7504665622d096f9ba80dc9e56f3afb8 /src/kernel/qaccessible.cpp | |
parent | a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (diff) | |
download | qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.tar.gz qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.zip |
Undo prior accidental commit
Diffstat (limited to 'src/kernel/qaccessible.cpp')
-rw-r--r-- | src/kernel/qaccessible.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kernel/qaccessible.cpp b/src/kernel/qaccessible.cpp index 539caae..d037124 100644 --- a/src/kernel/qaccessible.cpp +++ b/src/kernel/qaccessible.cpp @@ -385,7 +385,7 @@ QRESULT QAccessible::queryAccessibleInterface( QObject *object, QAccessibleInter if ( !qAccessibleManager ) { qAccessibleManager = new QPluginManager<QAccessibleFactoryInterface>( IID_QAccessibleFactory, QApplication::libraryPaths(), "/accessible" ); if ( !cleanupAdded ) { - tqAddPostRoutine( qAccessibleCleanup ); + qAddPostRoutine( qAccessibleCleanup ); cleanupAdded = TRUE; } } @@ -652,7 +652,7 @@ QAccessibleObject::QAccessibleObject( QObject *object ) if ( !qAccessibleInterface ) { qAccessibleInterface = new AccessibleCache; if ( !cleanupAdded ) { - tqAddPostRoutine( qAccessibleCleanup ); + qAddPostRoutine( qAccessibleCleanup ); cleanupAdded = TRUE; } } @@ -703,7 +703,7 @@ QObject *QAccessibleObject::object() const { #if defined(QT_CHECK_RANGE) if ( !isValid() ) - tqWarning( "QAccessibleInterface is invalid. Crash pending..." ); + qWarning( "QAccessibleInterface is invalid. Crash pending..." ); #endif return object_; } |