summaryrefslogtreecommitdiffstats
path: root/src/codecs/qrtlcodec.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-28 22:31:39 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-28 22:31:39 -0600
commit41bb408dde90e755b07cd2ab8a9bdec7548c84b0 (patch)
tree6d4d5407c000add30aa78630e009c0e5d633e440 /src/codecs/qrtlcodec.cpp
parent1740cd279522c060e738bbbffacab83355d2b794 (diff)
downloadtqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.tar.gz
tqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.zip
Automated conversion from qt3
Diffstat (limited to 'src/codecs/qrtlcodec.cpp')
-rw-r--r--src/codecs/qrtlcodec.cpp12
1 files changed, 6 insertions, 6 deletions
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);