diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
commit | c663b6440964f6ac48027143ac9e63298991f9d0 (patch) | |
tree | 6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /kioslave/smb/kio_smb_internal.h | |
parent | a061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff) | |
download | tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kioslave/smb/kio_smb_internal.h')
-rw-r--r-- | kioslave/smb/kio_smb_internal.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/kioslave/smb/kio_smb_internal.h b/kioslave/smb/kio_smb_internal.h index aabfc7ab7..b6da04e58 100644 --- a/kioslave/smb/kio_smb_internal.h +++ b/kioslave/smb/kio_smb_internal.h @@ -65,9 +65,9 @@ public: * Appends the specified file and dir to this SMBUrl * "smb://server/share" --> "smb://server/share/filedir" */ - void addPath(const QString &filedir); + void addPath(const TQString &filedir); - bool cd(const QString &dir); + bool cd(const TQString &dir); /** * Returns the type of this SMBUrl: @@ -78,33 +78,33 @@ public: */ SMBUrlType getType() const; - void setPass( const QString& _txt ) { KURL::setPass(_txt); updateCache(); } - void setUser( const QString& _txt ) { KURL::setUser(_txt); updateCache(); } - void setHost( const QString& _txt ) { KURL::setHost(_txt); updateCache(); } + void setPass( const TQString& _txt ) { KURL::setPass(_txt); updateCache(); } + void setUser( const TQString& _txt ) { KURL::setUser(_txt); updateCache(); } + void setHost( const TQString& _txt ) { KURL::setHost(_txt); updateCache(); } /** * Returns the workgroup if it given in url */ -// QString getWorkgroup() const; +// TQString getWorkgroup() const; /** * Returns path after workgroup */ -// QString getServerShareDir() const; +// TQString getServerShareDir() const; /** * Return a URL that is suitable for libsmbclient */ - QCString toSmbcUrl() const { return m_surl; } + TQCString toSmbcUrl() const { return m_surl; } private: /** - * Change from QString to QCString (MS Windows's character encoding) + * Change from TQString to TQCString (MS Windows's character encoding) */ - QCString fromUnicode( const QString &_str ) const; + TQCString fromUnicode( const TQString &_str ) const; void updateCache(); - QCString m_surl; + TQCString m_surl; /** * Type of URL |