diff options
Diffstat (limited to 'kode/code.h')
-rw-r--r-- | kode/code.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/kode/code.h b/kode/code.h index 1723df905..9f056df2b 100644 --- a/kode/code.h +++ b/kode/code.h @@ -23,9 +23,9 @@ #include "license.h" -#include <qvaluelist.h> -#include <qstring.h> -#include <qstringlist.h> +#include <tqvaluelist.h> +#include <tqstring.h> +#include <tqstringlist.h> #include <kdepimmacros.h> namespace KODE { @@ -43,26 +43,26 @@ class KDE_EXPORT Code void indent(); void unindent(); - QString text() const { return mText; } + TQString text() const { return mText; } - void addLine( const QString & ); + void addLine( const TQString & ); void addBlock( const Code & ); - void addBlock( const QString & ); - void addBlock( const QString &, int indent ); + void addBlock( const TQString & ); + void addBlock( const TQString &, int indent ); - void addWrappedText( const QString & ); - void addFormattedText( const QString & ); + void addWrappedText( const TQString & ); + void addFormattedText( const TQString & ); void newLine(); - Code &operator+=( const QString & ); + Code &operator+=( const TQString & ); Code &operator+=( const char * ); Code &operator+=( const Code & ); - static QString spaces( int count ); + static TQString spaces( int count ); private: - QString mText; + TQString mText; int mIndent; }; |