diff options
Diffstat (limited to 'qtools/qcstring.h')
-rw-r--r-- | qtools/qcstring.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/qtools/qcstring.h b/qtools/qcstring.h index 073a969..e735462 100644 --- a/qtools/qcstring.h +++ b/qtools/qcstring.h @@ -49,6 +49,8 @@ #include <strings.h> #endif +//#undef SMALLSTRING +#define SMALLSTRING /***************************************************************************** Fixes and workarounds for some platforms @@ -166,6 +168,11 @@ Q_EXPORT QDataStream &operator>>( QDataStream &, QByteArray & ); +#ifdef SMALLSTRING +#define SCString QCString +#include "scstring.h" +#else + /***************************************************************************** QCString class *****************************************************************************/ @@ -252,6 +259,7 @@ public: QCString &operator+=( char c ); }; +#endif /***************************************************************************** QCString stream functions |