summaryrefslogtreecommitdiffstats
path: root/src/kernel/qtranslator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/qtranslator.cpp')
-rw-r--r--src/kernel/qtranslator.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/kernel/qtranslator.cpp b/src/kernel/qtranslator.cpp
index ca160f9..55749e2 100644
--- a/src/kernel/qtranslator.cpp
+++ b/src/kernel/qtranslator.cpp
@@ -492,13 +492,13 @@ bool QTranslator::load( const QString & filename, const QString & directory,
f = qt_open( QFile::encodeName(realname), O_RDONLY, 0666 );
if ( f < 0 ) {
- // qDebug( "can't open %s: %s", realname.ascii(), strerror( errno ) );
+ // tqDebug( "can't open %s: %s", realname.ascii(), strerror( errno ) );
return FALSE;
}
struct stat st;
if ( fstat( f, &st ) ) {
- // qDebug( "can't stat %s: %s", realname.ascii(), strerror( errno ) );
+ // tqDebug( "can't stat %s: %s", realname.ascii(), strerror( errno ) );
return FALSE;
}
char * tmp;
@@ -507,7 +507,7 @@ bool QTranslator::load( const QString & filename, const QString & directory,
MAP_FILE | MAP_PRIVATE, // swap-backed map from file
f, 0 ); // from offset 0 of f
if ( !tmp || tmp == (char*)MAP_FAILED ) {
- // qDebug( "can't mmap %s: %s", filename.ascii(), strerror( errno ) );
+ // tqDebug( "can't mmap %s: %s", filename.ascii(), strerror( errno ) );
return FALSE;
}
@@ -845,7 +845,7 @@ void QTranslator::squeeze( SaveMode mode )
delete [] hTable;
if ( upto > 131072 ) {
- qWarning( "QTranslator::squeeze: Too many contexts" );
+ tqWarning( "QTranslator::squeeze: Too many contexts" );
delete d->contextArray;
d->contextArray = 0;
}
@@ -1029,7 +1029,7 @@ QTranslatorMessage QTranslator::findMessage( const char* context,
return QTranslatorMessage();
if ( systemWordSize == 0 )
- qSysInfo( &systemWordSize, &systemBigEndian );
+ tqSysInfo( &systemWordSize, &systemBigEndian );
for ( ;; ) {
Q_UINT32 h = elfHash( QCString(sourceText) + comment );