summaryrefslogtreecommitdiffstats
path: root/src/tools/qunicodetables_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/qunicodetables_p.h')
-rw-r--r--src/tools/qunicodetables_p.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/tools/qunicodetables_p.h b/src/tools/qunicodetables_p.h
index 07d4a599..7cc4cc6e 100644
--- a/src/tools/qunicodetables_p.h
+++ b/src/tools/qunicodetables_p.h
@@ -61,21 +61,21 @@
class TQUnicodeTables {
public:
- static const Q_UINT8 unicode_info[];
+ static const TQ_UINT8 unicode_info[];
#ifndef QT_NO_UNICODETABLES
- static const Q_UINT16 decomposition_map[];
- static const Q_UINT16 decomposition_info[];
- static const Q_UINT16 ligature_map[];
- static const Q_UINT16 ligature_info[];
- static const Q_UINT8 direction_info[];
- static const Q_UINT8 combining_info[];
- static const Q_UINT16 case_info[];
- static const Q_INT8 decimal_info[];
- static const Q_UINT16 symmetricPairs[];
+ static const TQ_UINT16 decomposition_map[];
+ static const TQ_UINT16 decomposition_info[];
+ static const TQ_UINT16 ligature_map[];
+ static const TQ_UINT16 ligature_info[];
+ static const TQ_UINT8 direction_info[];
+ static const TQ_UINT8 combining_info[];
+ static const TQ_UINT16 case_info[];
+ static const TQ_INT8 decimal_info[];
+ static const TQ_UINT16 symmetricPairs[];
static const int symmetricPairsSize;
- static const Q_UINT8 line_break_info[];
+ static const TQ_UINT8 line_break_info[];
#else
- static const Q_UINT8 latin1_line_break_info[];
+ static const TQ_UINT8 latin1_line_break_info[];
#endif
static const unsigned char otherScripts[];
static const unsigned char indicScripts[];
@@ -117,7 +117,7 @@ inline TQChar lower( const TQChar &c )
uc += c.cell();
if (TQUnicodeTables::unicode_info[uc] != TQChar::Letter_Uppercase || !ci)
return c;
- Q_UINT16 lower = TQUnicodeTables::case_info[(ci<<8)+cell];
+ TQ_UINT16 lower = TQUnicodeTables::case_info[(ci<<8)+cell];
return lower ? TQChar(lower) : c;
#else
if ( c.row() )
@@ -136,7 +136,7 @@ inline TQChar upper( const TQChar &c )
uc += c.cell();
if (TQUnicodeTables::unicode_info[uc] != TQChar::Letter_Lowercase || !ci)
return c;
- Q_UINT16 upper = TQUnicodeTables::case_info[(ci<<8)+cell];
+ TQ_UINT16 upper = TQUnicodeTables::case_info[(ci<<8)+cell];
return upper ? TQChar(upper) : c;
#else
if ( c.row() )