summaryrefslogtreecommitdiffstats
path: root/src/codecs/qrtlcodec.cpp
diff options
context:
space:
mode:
authorDarrell Anderson <[email protected]>2012-06-18 00:09:52 -0500
committerDarrell Anderson <[email protected]>2012-06-18 00:09:52 -0500
commitd1096751ddb25cdef23919c17389fc268c31edaf (patch)
treeb910be3588cb706defc00c31aefa850bb2312784 /src/codecs/qrtlcodec.cpp
parentaf8fdcf1ca7bdbda6f0c1afecd8c2d8ffa23bebb (diff)
parent6dec101d43dcbd4195c47d54bd388db1a8d7230e (diff)
downloadtqt3-d1096751ddb25cdef23919c17389fc268c31edaf.tar.gz
tqt3-d1096751ddb25cdef23919c17389fc268c31edaf.zip
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tqt3
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;