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/kcrash.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/kcrash.h')
-rw-r--r-- | kdecore/kcrash.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kdecore/kcrash.h b/kdecore/kcrash.h index a2fe969ea..31a802f3d 100644 --- a/kdecore/kcrash.h +++ b/kdecore/kcrash.h @@ -22,7 +22,7 @@ #ifndef __KCRASH_H #define __KCRASH_H -#include <qstring.h> +#include <tqstring.h> #include "kdelibs_export.h" /** @@ -97,16 +97,16 @@ class KDECORE_EXPORT KCrash * Dr. Konqi, our nice crash display application. * @param path the application path. */ - static void setApplicationPath (QString path) { appPath = qstrdup(path.local8Bit().data()); } - /* KDE 4: Make it const QString & */ + static void setApplicationPath (TQString path) { appPath = qstrdup(path.local8Bit().data()); } + /* KDE 4: Make it const TQString & */ /** * Sets the application name @p name which should be passed to * Dr. Konqi, our nice crash display application. * @param name the name of the application, as shown in Dr. Konqi */ - static void setApplicationName (QString name) { appName = qstrdup(name.local8Bit().data()); } - /* KDE 4: Make it const QString & */ + static void setApplicationName (TQString name) { appName = qstrdup(name.local8Bit().data()); } + /* KDE 4: Make it const TQString & */ protected: /** |