From 9a75b154bf0732aa3a501b6e31e566e06c5f8a31 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 2 Mar 2012 02:11:59 -0600 Subject: Undo prior accidental commit --- src/tools/qlibrary_unix.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/tools/qlibrary_unix.cpp') diff --git a/src/tools/qlibrary_unix.cpp b/src/tools/qlibrary_unix.cpp index 0c67ca1..d75ae0d 100644 --- a/src/tools/qlibrary_unix.cpp +++ b/src/tools/qlibrary_unix.cpp @@ -68,7 +68,7 @@ bool QLibraryPrivate::loadLibrary() pHnd = (void*)shl_load( filename.latin1(), BIND_DEFERRED | BIND_NONFATAL | DYNAMIC_PATH, 0 ); #if defined(QT_DEBUG) || defined(QT_DEBUG_COMPONENT) if ( !pHnd ) - tqWarning( "%s: failed to load library!", filename.latin1() ); + qWarning( "%s: failed to load library!", filename.latin1() ); #endif return pHnd != 0; } @@ -81,7 +81,7 @@ bool QLibraryPrivate::freeLibrary() if ( shl_unload( (shl_t)pHnd ) ) { #if defined(QT_DEBUG) || defined(QT_DEBUG_COMPONENT) QString filename = library->library(); - tqWarning( "%s: Failed to unload library!", filename.latin1() ); + qWarning( "%s: Failed to unload library!", filename.latin1() ); #endif return FALSE; } @@ -98,7 +98,7 @@ void* QLibraryPrivate::resolveSymbol( const char* symbol ) if ( shl_findsym( (shl_t*)&pHnd, symbol, TYPE_UNDEFINED, &address ) < 0 ) { #if defined(QT_DEBUG_COMPONENT) QString filename = library->library(); - tqWarning( "%s: couldn't resolve symbol \"%s\"", filename.latin1(), symbol ); + qWarning( "%s: couldn't resolve symbol \"%s\"", filename.latin1(), symbol ); #endif } return address; @@ -120,7 +120,7 @@ bool QLibraryPrivate::loadLibrary() pHnd = DL_PREFIX(dlopen)( filename.latin1(), RTLD_LAZY ); #if defined(QT_DEBUG) || defined(QT_DEBUG_COMPONENT) if ( !pHnd ) - tqWarning( "%s", DL_PREFIX(dlerror)() ); + qWarning( "%s", DL_PREFIX(dlerror)() ); #endif return pHnd != 0; } @@ -132,7 +132,7 @@ bool QLibraryPrivate::freeLibrary() if ( DL_PREFIX(dlclose)( pHnd ) ) { #if defined(QT_DEBUG) || defined(QT_DEBUG_COMPONENT) - tqWarning( "%s", DL_PREFIX(dlerror)() ); + qWarning( "%s", DL_PREFIX(dlerror)() ); #endif return FALSE; } @@ -159,7 +159,7 @@ void* QLibraryPrivate::resolveSymbol( const char* symbol ) #if defined(QT_DEBUG_COMPONENT) const char* error = DL_PREFIX(dlerror)(); if ( error ) - tqWarning( "%s", error ); + qWarning( "%s", error ); #endif return address; } -- cgit v1.2.3