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.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/tools/qunicodetables_p.h b/src/tools/qunicodetables_p.h
index 7cc4cc6e..4adbc1f6 100644
--- a/src/tools/qunicodetables_p.h
+++ b/src/tools/qunicodetables_p.h
@@ -55,14 +55,14 @@
#include "ntqstring.h"
#endif // QT_H
-#ifdef QT_NO_UNICODETABLES
+#ifdef TQT_NO_UNICODETABLES
# include <ctype.h>
#endif
class TQUnicodeTables {
public:
static const TQ_UINT8 unicode_info[];
-#ifndef QT_NO_UNICODETABLES
+#ifndef TQT_NO_UNICODETABLES
static const TQ_UINT16 decomposition_map[];
static const TQ_UINT16 decomposition_info[];
static const TQ_UINT16 ligature_map[];
@@ -97,19 +97,19 @@ public:
inline TQChar::Category category( const TQChar &c )
{
-#ifdef QT_NO_UNICODETABLES
+#ifdef TQT_NO_UNICODETABLES
if ( c.unicode() > 0xff ) return TQChar::Letter_Uppercase; //########
return (TQChar::Category)TQUnicodeTables::unicode_info[c.unicode()];
#else
register int uc = ((int)TQUnicodeTables::unicode_info[c.row()]) << 8;
uc += c.cell();
return (TQChar::Category)TQUnicodeTables::unicode_info[uc];
-#endif // QT_NO_UNICODETABLES
+#endif // TQT_NO_UNICODETABLES
}
inline TQChar lower( const TQChar &c )
{
-#ifndef QT_NO_UNICODETABLES
+#ifndef TQT_NO_UNICODETABLES
int row = c.row();
int cell = c.cell();
register int ci = TQUnicodeTables::case_info[row];
@@ -128,7 +128,7 @@ inline TQChar lower( const TQChar &c )
inline TQChar upper( const TQChar &c )
{
-#ifndef QT_NO_UNICODETABLES
+#ifndef TQT_NO_UNICODETABLES
int row = c.row();
int cell = c.cell();
register int ci = TQUnicodeTables::case_info[row];
@@ -147,7 +147,7 @@ inline TQChar upper( const TQChar &c )
inline TQChar::Direction direction( const TQChar &c )
{
-#ifndef QT_NO_UNICODETABLES
+#ifndef TQT_NO_UNICODETABLES
register int pos = TQUnicodeTables::direction_info[c.row()];
return (TQChar::Direction) (TQUnicodeTables::direction_info[(pos<<8)+c.cell()] & 0x1f);
#else
@@ -158,7 +158,7 @@ inline TQChar::Direction direction( const TQChar &c )
inline bool mirrored( const TQChar &c )
{
-#ifndef QT_NO_UNICODETABLES
+#ifndef TQT_NO_UNICODETABLES
register int pos = TQUnicodeTables::direction_info[c.row()];
return TQUnicodeTables::direction_info[(pos<<8)+c.cell()] > 128;
#else
@@ -170,7 +170,7 @@ inline bool mirrored( const TQChar &c )
inline TQChar mirroredChar( const TQChar &ch )
{
-#ifndef QT_NO_UNICODETABLES
+#ifndef TQT_NO_UNICODETABLES
if(!::mirrored( ch ))
return ch;
@@ -186,7 +186,7 @@ inline TQChar mirroredChar( const TQChar &ch )
inline TQChar::Joining joining( const TQChar &ch )
{
-#ifndef QT_NO_UNICODETABLES
+#ifndef TQT_NO_UNICODETABLES
register int pos = TQUnicodeTables::direction_info[ch.row()];
return (TQChar::Joining) ((TQUnicodeTables::direction_info[(pos<<8)+ch.cell()] >> 5) &0x3);
#else
@@ -203,7 +203,7 @@ inline bool isMark( const TQChar &ch )
inline unsigned char combiningClass( const TQChar &ch )
{
-#ifndef QT_NO_UNICODETABLES
+#ifndef TQT_NO_UNICODETABLES
const int pos = TQUnicodeTables::combining_info[ch.row()];
return TQUnicodeTables::combining_info[(pos<<8) + ch.cell()];
#else
@@ -221,7 +221,7 @@ inline bool isSpace( const TQChar &ch )
inline int lineBreakClass( const TQChar &ch )
{
-#ifdef QT_NO_UNICODETABLES
+#ifdef TQT_NO_UNICODETABLES
return ch.row() ? TQUnicodeTables::LineBreak_AL
: TQUnicodeTables::latin1_line_break_info[ch.cell()];
#else