From 41bb408dde90e755b07cd2ab8a9bdec7548c84b0 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Tue, 28 Feb 2012 22:31:39 -0600 Subject: Automated conversion from qt3 --- src/codecs/qrtlcodec.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/codecs/qrtlcodec.cpp') diff --git a/src/codecs/qrtlcodec.cpp b/src/codecs/qrtlcodec.cpp index fa1585ec8..42917b286 100644 --- a/src/codecs/qrtlcodec.cpp +++ b/src/codecs/qrtlcodec.cpp @@ -217,7 +217,7 @@ static TQString reverseLine(const TQString &str, unsigned int from, unsigned int case TQChar::DirL: if ( runDir != TQChar::DirL && runDir != TQChar::DirON ) { out += run( str, from, pos, runDir ); - qDebug( "out = %s", out.latin1() ); + tqDebug( "out = %s", out.latin1() ); from = pos; } runDir = TQChar::DirL; @@ -233,7 +233,7 @@ static TQString reverseLine(const TQString &str, unsigned int from, unsigned int case TQChar::DirEN: if ( runDir != TQChar::DirR && runDir != TQChar::DirON ) { out += run( str, from, pos, runDir ); - qDebug( "out = %s", out.latin1() ); + tqDebug( "out = %s", out.latin1() ); from = pos; } runDir = TQChar::DirR; @@ -243,7 +243,7 @@ static TQString reverseLine(const TQString &str, unsigned int from, unsigned int pos++; } out += run( str, from, pos, runDir ); - qDebug( "out = %s", out.latin1() ); + tqDebug( "out = %s", out.latin1() ); // second reversing for numbers TQString in = out; out = ""; @@ -259,7 +259,7 @@ static TQString reverseLine(const TQString &str, unsigned int from, unsigned int case TQChar::DirR: if ( runDir == TQChar::DirEN && runDir != TQChar::DirON ) { out += run( in, from, pos, TQChar::DirR ); //DirR ensures reversing - qDebug( "out = %s", out.latin1() ); + tqDebug( "out = %s", out.latin1() ); runDir = TQChar::DirR; from = pos; } @@ -269,7 +269,7 @@ static TQString reverseLine(const TQString &str, unsigned int from, unsigned int case TQChar::DirEN: if ( runDir != TQChar::DirEN && runDir != TQChar::DirON ) { out += in.mid(from, pos-from+1); - qDebug( "out = %s", out.latin1() ); + tqDebug( "out = %s", out.latin1() ); from = pos; } runDir = TQChar::DirEN; @@ -437,7 +437,7 @@ static TQString visualOrder(TQString logical, TQChar::Direction basicDir) } int i; for (i = 0; i < nitems; ++i) { - //qDebug("item %d bidiLevel=%d", i, e.items[i].analysis.bidiLevel); + //tqDebug("item %d bidiLevel=%d", i, e.items[i].analysis.bidiLevel); levels[i] = e.items[i].analysis.bidiLevel; } e.bidiReorder(nitems, levels, visualOrder); -- cgit v1.2.1