diff options
Diffstat (limited to 'umbrello/umbrello/umlnamespace.h')
-rw-r--r-- | umbrello/umbrello/umlnamespace.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/umbrello/umbrello/umlnamespace.h b/umbrello/umbrello/umlnamespace.h index 0c0ea2fd..7f466a99 100644 --- a/umbrello/umbrello/umlnamespace.h +++ b/umbrello/umbrello/umlnamespace.h @@ -13,7 +13,7 @@ #define UMLNAMESPACE_H #include <string> -#include <qstring.h> +#include <tqstring.h> /** @@ -67,16 +67,16 @@ class Visibility { }; Visibility(); Visibility(Value v); - static QString toString(Value value, bool mnemonic); - static Visibility fromString(const QString& vis); + static TQString toString(Value value, bool mnemonic); + static Visibility fromString(const TQString& vis); /** - * Convert Visibility value into QString representation. + * Convert Visibility value into TQString representation. * * @param mnemonic If true then return a single character: * "+" for public, "-" for private, * "#" for protected or "~" for implementation */ - QString toString(bool mnemonic = false) const; + TQString toString(bool mnemonic = false) const; operator Value () const; private: Value _v; @@ -336,7 +336,7 @@ const IDType id_None = "-1"; const IDType id_Reserved = "0"; # define STR2ID(id) id.ascii() -# define ID2STR(id) QString(id.c_str()) +# define ID2STR(id) TQString(id.c_str()) // KDE4 compatibility # define kDebug kdDebug @@ -346,7 +346,7 @@ const IDType id_Reserved = "0"; /** * Function for comparing tags in XMI files. */ -bool tagEq (const QString& tag, const QString& pattern); +bool tagEq (const TQString& tag, const TQString& pattern); } // end namespace Uml |