diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
commit | ffe8a83e053396df448e9413828527613ca3bd46 (patch) | |
tree | a73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kdecore/kglobal.h | |
parent | 682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff) | |
download | tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdecore/kglobal.h')
-rw-r--r-- | kdecore/kglobal.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kdecore/kglobal.h b/kdecore/kglobal.h index 1c1f75967..14bf26d32 100644 --- a/kdecore/kglobal.h +++ b/kdecore/kglobal.h @@ -90,42 +90,42 @@ public: static KCharsets *charsets(); /** - * Creates a static QString. + * Creates a static TQString. * * To be used inside functions(!) like: * \code - * static const QString &myString = KGlobal::staticQString("myText"); + * static const TQString &myString = KGlobal::staticQString("myText"); * \endcode * * !!! Do _NOT_ use: !!! * \code - * static QString myString = KGlobal::staticQString("myText"); + * static TQString myString = KGlobal::staticQString("myText"); * \endcode * This creates a static object (instead of a static reference) * and as you know static objects are EVIL. * @param str the string to create * @return the static string */ - static const QString &staticQString(const char *str); + static const TQString &staticQString(const char *str); /** - * Creates a static QString. + * Creates a static TQString. * * To be used inside functions(!) like: * \code - * static const QString &myString = KGlobal::staticQString(i18n("My Text")); + * static const TQString &myString = KGlobal::staticQString(i18n("My Text")); * \endcode * * !!! Do _NOT_ use: !!! * \code - * static QString myString = KGlobal::staticQString(i18n("myText")); + * static TQString myString = KGlobal::staticQString(i18n("myText")); * \endcode * This creates a static object (instead of a static reference) * and as you know static objects are EVIL. * @param str the string to create * @return the static string */ - static const QString &staticQString(const QString &str); + static const TQString &staticQString(const TQString &str); /** * Registers a static deleter. @@ -228,7 +228,7 @@ int KDECORE_EXPORT kasciistricmp( const char *str1, const char *str2 ); * of other (but no less important) things. * * All KDE applications should link to the kdecore library. Also, using a - * KApplication derived class instead of QApplication is almost + * KApplication derived class instead of TQApplication is almost * mandatory if you expect your application to behave nicely within the * KDE environment. */ |