summaryrefslogtreecommitdiffstats
path: root/src/tools/qunicodetables_p.h
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/tools/qunicodetables_p.h
parentf27c2533f735d53c6b555f387c6390c0690cc246 (diff)
downloadtqt3-6dec101d43dcbd4195c47d54bd388db1a8d7230e.tar.gz
tqt3-6dec101d43dcbd4195c47d54bd388db1a8d7230e.zip
Automated update from Qt3
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 07d4a599e..7cc4cc6ec 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() )