diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-04 19:54:24 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-04 19:54:24 +0000 |
commit | d7633c195a464e4d344ada9eea61afd10110598a (patch) | |
tree | 1f2da0b135f3ed84955e340cae823f00c4ce7284 /src/svnqt/wc.hpp | |
parent | 3fa7eb804f67b2789f128075cc2522f398640250 (diff) | |
download | tdesvn-d7633c195a464e4d344ada9eea61afd10110598a.tar.gz tdesvn-d7633c195a464e4d344ada9eea61afd10110598a.zip |
Port kdesvn to TQt4
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kdesvn@1230412 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/svnqt/wc.hpp')
-rw-r--r-- | src/svnqt/wc.hpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/svnqt/wc.hpp b/src/svnqt/wc.hpp index b8769f8..84cb23b 100644 --- a/src/svnqt/wc.hpp +++ b/src/svnqt/wc.hpp @@ -41,14 +41,14 @@ #include "svnqt/revision.hpp" #include "svnqt/svnqt_defines.hpp" -#include <qstring.h> +#include <tqstring.h> namespace svn { /** * Class that deals with a working copy */ - class SVNQT_EXPORT Wc + class SVNTQT_EXPORT Wc { public: /** @@ -58,7 +58,7 @@ namespace svn * @return true=valid working copy */ static bool - checkWc (const QString& dir); + checkWc (const TQString& dir); /** * ensure that an administrative area exists for @a dir, so that @a dir @@ -70,20 +70,20 @@ namespace svn * @param revision expected working copy revision */ static void - ensureAdm (const QString& dir, const QString& uuid, - const QString& url, const Revision & revision) throw (ClientException); + ensureAdm (const TQString& dir, const TQString& uuid, + const TQString& url, const Revision & revision) throw (ClientException); /** * retrieve the url of a given working copy item * @param path the working copy item to check * @return the repository url of @a path */ - static QString getUrl(const QString&path) throw (ClientException); - static QString getRepos(const QString&path) throw (ClientException); + static TQString getUrl(const TQString&path) throw (ClientException); + static TQString getRepos(const TQString&path) throw (ClientException); static const char * ADM_DIR_NAME; private: - static const svn_wc_entry_t *getEntry( const QString &path ) throw ( ClientException ); + static const svn_wc_entry_t *getEntry( const TQString &path ) throw ( ClientException ); }; } |