summaryrefslogtreecommitdiffstats
path: root/kdecore/kinstance.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
commitffe8a83e053396df448e9413828527613ca3bd46 (patch)
treea73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kdecore/kinstance.h
parent682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff)
downloadtdelibs-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/kinstance.h')
-rw-r--r--kdecore/kinstance.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/kdecore/kinstance.h b/kdecore/kinstance.h
index 88678ba99..f502eefc5 100644
--- a/kdecore/kinstance.h
+++ b/kdecore/kinstance.h
@@ -28,7 +28,7 @@ class KInstancePrivate;
class KMimeSourceFactory;
class KSharedConfig;
-#include <qstring.h>
+#include <tqstring.h>
#include "kdelibs_export.h"
@@ -49,7 +49,7 @@ class KDECORE_EXPORT KInstance
* Constructor.
* @param instanceName the name of the instance
*/
- KInstance( const QCString& instanceName) ;
+ KInstance( const TQCString& instanceName) ;
/**
* Constructor.
@@ -118,7 +118,7 @@ class KDECORE_EXPORT KInstance
* @return the instance name, can be null if the KInstance has been
* created with a null name
*/
- QCString instanceName() const;
+ TQCString instanceName() const;
/**
* Returns the KMimeSourceFactory of the instance.
@@ -138,7 +138,7 @@ protected:
* @param name the name of the default config file
* @since 3.1
*/
- void setConfigName(const QString &name);
+ void setConfigName(const TQString &name);
private:
mutable KStandardDirs *_dirs;
@@ -146,7 +146,7 @@ private:
mutable KConfig *_config;
mutable KIconLoader *_iconLoader;
- QCString _name;
+ TQCString _name;
const KAboutData *_aboutData;
protected: