diff options
Diffstat (limited to 'umbrello/umbrello/codegenerators/javacodecomment.h')
-rw-r--r-- | umbrello/umbrello/codegenerators/javacodecomment.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/umbrello/umbrello/codegenerators/javacodecomment.h b/umbrello/umbrello/codegenerators/javacodecomment.h index 1f9b1d8d..468b2a7c 100644 --- a/umbrello/umbrello/codegenerators/javacodecomment.h +++ b/umbrello/umbrello/codegenerators/javacodecomment.h @@ -18,7 +18,7 @@ #ifndef JAVACODECOMMENT_H #define JAVACODECOMMENT_H -#include <qstring.h> +#include <tqstring.h> #include "../codecomment.h" /** @@ -40,7 +40,7 @@ public: /** * Constructors */ - explicit JavaCodeComment ( CodeDocument * doc, const QString & text = ""); + explicit JavaCodeComment ( CodeDocument * doc, const TQString & text = ""); /** * Empty Destructor @@ -56,17 +56,17 @@ public: /** * @return QString */ - QString toString ( ); + TQString toString ( ); /** UnFormat a long text string. Typically, this means removing * the indentaion (linePrefix) and/or newline chars from each line. */ - virtual QString unformatText ( const QString & text, const QString & indent = "" ); + virtual TQString unformatText ( const TQString & text, const TQString & indent = "" ); /** a special version here because we want to not only indent * the new line, but to add the "//" sequence as well. */ - virtual QString getNewEditorLine ( int amount ); + virtual TQString getNewEditorLine ( int amount ); protected: |