summaryrefslogtreecommitdiffstats
path: root/kdecore/kmountpoint.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/kmountpoint.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/kmountpoint.h')
-rw-r--r--kdecore/kmountpoint.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/kdecore/kmountpoint.h b/kdecore/kmountpoint.h
index ee3ea3941..fd4fe9c5d 100644
--- a/kdecore/kmountpoint.h
+++ b/kdecore/kmountpoint.h
@@ -20,8 +20,8 @@
#ifndef _KMOUNTPOINT_H_
#define _KMOUNTPOINT_H_
-#include <qptrlist.h>
-#include <qstringlist.h>
+#include <tqptrlist.h>
+#include <tqstringlist.h>
#include <ksharedptr.h>
@@ -37,7 +37,7 @@ class KDECORE_EXPORT KMountPoint : public KShared
typedef signed long long int filesize_t;
public:
typedef KSharedPtr<KMountPoint> Ptr;
- typedef QValueList<Ptr> List;
+ typedef TQValueList<Ptr> List;
public:
enum { NeedMountOptions = 1, NeedRealDeviceName = 2 };
@@ -59,37 +59,37 @@ public:
* Where this filesystem gets mounted from.
* This can refer to a device, a remote server or something else.
*/
- QString mountedFrom() const { return m_mountedFrom; }
+ TQString mountedFrom() const { return m_mountedFrom; }
/**
* Canonical name of the device where the filesystem got mounted from.
* (Or empty, if not a device)
* Only available when the NeedRealDeviceName flag was set.
*/
- QString realDeviceName() const { return m_device; }
+ TQString realDeviceName() const { return m_device; }
/**
* Path where the filesystem is mounted or can be mounted.
*/
- QString mountPoint() const { return m_mountPoint; }
+ TQString mountPoint() const { return m_mountPoint; }
/**
* Type of filesystem
*/
- QString mountType() const { return m_mountType; }
+ TQString mountType() const { return m_mountType; }
/**
* Options used to mount the filesystem.
* Only available when the NeedMountOptions flag was set.
*/
- QStringList mountOptions() const { return m_mountOptions; }
+ TQStringList mountOptions() const { return m_mountOptions; }
/**
* When using supermount, the device name is in the options field
* as dev=/my/device
* @since 3.4
*/
- static QString devNameFromOptions(const QStringList &options);
+ static TQString devNameFromOptions(const TQStringList &options);
/**
* Destructor
@@ -102,11 +102,11 @@ private:
*/
KMountPoint();
- QString m_mountedFrom;
- QString m_device;
- QString m_mountPoint;
- QString m_mountType;
- QStringList m_mountOptions;
+ TQString m_mountedFrom;
+ TQString m_device;
+ TQString m_mountPoint;
+ TQString m_mountType;
+ TQStringList m_mountOptions;
class KMountPointPrivate;
KMountPointPrivate *d;