summaryrefslogtreecommitdiffstats
path: root/src/codecs/qrtlcodec.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-06-17 17:28:28 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-06-17 17:28:28 -0500
commit6dec101d43dcbd4195c47d54bd388db1a8d7230e (patch)
tree7c336cbed3a93807a34cd4df39b2f92a7d48a141 /src/codecs/qrtlcodec.cpp
parentf27c2533f735d53c6b555f387c6390c0690cc246 (diff)
downloadtqt3-6dec101d43dcbd4195c47d54bd388db1a8d7230e.tar.gz
tqt3-6dec101d43dcbd4195c47d54bd388db1a8d7230e.zip
Automated update from Qt3
Diffstat (limited to 'src/codecs/qrtlcodec.cpp')
-rw-r--r--src/codecs/qrtlcodec.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/codecs/qrtlcodec.cpp b/src/codecs/qrtlcodec.cpp
index 42917b286..bf2a94be6 100644
--- a/src/codecs/qrtlcodec.cpp
+++ b/src/codecs/qrtlcodec.cpp
@@ -426,13 +426,13 @@ static TQString visualOrder(TQString logical, TQChar::Direction basicDir)
TQTextEngine e(logical, 0);
e.direction = basicDir;
e.itemize();
- Q_UINT8 l[256];
- Q_UINT8 *levels = l;
+ TQ_UINT8 l[256];
+ TQ_UINT8 *levels = l;
int vo[256];
int *visualOrder = vo;
int nitems = e.items.size();
if (nitems > 255) {
- levels = new Q_UINT8[nitems];
+ levels = new TQ_UINT8[nitems];
visualOrder = new int[nitems];
}
int i;