diff options
author | Timothy Pearson <[email protected]> | 2012-03-01 13:32:17 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-01 13:32:17 -0600 |
commit | c509088a31cffd8e6d25c00a00414025426fc737 (patch) | |
tree | 06242637d2244aa79ad8812f39e64005ffc5ea91 /libkscan/kscanoption.cpp | |
parent | 913e257dbbebe29c4f356ebb9fc6e888d0d1ac75 (diff) | |
download | tdegraphics-c509088a31cffd8e6d25c00a00414025426fc737.tar.gz tdegraphics-c509088a31cffd8e6d25c00a00414025426fc737.zip |
Rename additional global TQt functions
Diffstat (limited to 'libkscan/kscanoption.cpp')
-rw-r--r-- | libkscan/kscanoption.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libkscan/kscanoption.cpp b/libkscan/kscanoption.cpp index 43b35d0b..4a820ee9 100644 --- a/libkscan/kscanoption.cpp +++ b/libkscan/kscanoption.cpp @@ -290,7 +290,7 @@ void KScanOption::slWidgetChange( int i ) */ void KScanOption::slRedrawWidget( KScanOption *so ) { - // qDebug( "Checking widget %s", (const char*) so->getName()); + // tqDebug( "Checking widget %s", (const char*) so->getName()); int help = 0; TQString string; @@ -413,7 +413,7 @@ void KScanOption::slReload( void ) KScanOption::~KScanOption() { #ifdef MEM_DEBUG - qDebug( "M: FREEing %d byte of option <%s>", buffer_size, (const char*) getName()); + tqDebug( "M: FREEing %d byte of option <%s>", buffer_size, (const char*) getName()); #endif } @@ -757,7 +757,7 @@ bool KScanOption::set( const TQCString& c_string ) if( buffer_size >= c_string.length() ) { memset( buffer, 0, buffer_size ); - qstrncpy( (char*) buffer, (const char*) c_string, buffer_size ); + tqstrncpy( (char*) buffer, (const char*) c_string, buffer_size ); ret = true; } else @@ -892,7 +892,7 @@ bool KScanOption::get( int *val ) const return( false ); } - // qDebug( "option::get returns %d", *val ); + // tqDebug( "option::get returns %d", *val ); return( true ); } @@ -971,7 +971,7 @@ TQStrList KScanOption::getList( ) const while( *sstring ) { - // qDebug( "This is in the stringlist: %s", *sstring ); + // tqDebug( "This is in the stringlist: %s", *sstring ); strList.append( *sstring ); sstring++; } @@ -1181,7 +1181,7 @@ void *KScanOption::allocBuffer( long size ) if( size < 1 ) return( 0 ); #ifdef MEM_DEBUG - qDebug( "M: Reserving %ld bytes of mem for <%s>", size, (const char*) getName() ); + tqDebug( "M: Reserving %ld bytes of mem for <%s>", size, (const char*) getName() ); #endif void *r = new char[ size ]; |