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/kxerrorhandler.cpp | |
parent | 8fc8811ef6079a15decd33f1ea5d95dd718e4557 (diff) | |
download | tdelibs-4fb897b216c41c13f128c71bcc66f60e2dc601c4.tar.gz tdelibs-4fb897b216c41c13f128c71bcc66f60e2dc601c4.zip |
Rename additional global TQt functions
Diffstat (limited to 'tdecore/kxerrorhandler.cpp')
-rw-r--r-- | tdecore/kxerrorhandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdecore/kxerrorhandler.cpp b/tdecore/kxerrorhandler.cpp index 43a05f42e..3a8524bed 100644 --- a/tdecore/kxerrorhandler.cpp +++ b/tdecore/kxerrorhandler.cpp @@ -105,7 +105,7 @@ int KXErrorHandler::handle( Display* dpy, XErrorEvent* e ) // e->serial >= first_request , compare like X timestamps to handle wrapping && NET::timestampCompare( e->serial, first_request ) >= 0 ) { // it's for us - //qDebug( "Handling: %p", static_cast< void* >( this )); + //tqDebug( "Handling: %p", static_cast< void* >( this )); if( user_handler1 != NULL && user_handler1( e->request_code, e->error_code, e->resourceid )) was_error = true; if( user_handler2 != NULL && user_handler2( dpy, e ) != 0 ) @@ -114,7 +114,7 @@ int KXErrorHandler::handle( Display* dpy, XErrorEvent* e ) was_error = true; return 0; } - //qDebug( "Going deeper: %p", static_cast< void* >( this )); + //tqDebug( "Going deeper: %p", static_cast< void* >( this )); return old_handler( dpy, e ); } |