diff options
Diffstat (limited to 'kdecore/kmountpoint.h')
-rw-r--r-- | kdecore/kmountpoint.h | 28 |
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; |