From ffe8a83e053396df448e9413828527613ca3bd46 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:46:43 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kdecore/kmountpoint.h | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'kdecore/kmountpoint.h') 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 -#include +#include +#include #include @@ -37,7 +37,7 @@ class KDECORE_EXPORT KMountPoint : public KShared typedef signed long long int filesize_t; public: typedef KSharedPtr Ptr; - typedef QValueList List; + typedef TQValueList 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; -- cgit v1.2.1