summaryrefslogtreecommitdiffstats
path: root/src/svnqt/repositorydata.hpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-05-04 19:54:24 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-05-04 19:54:24 +0000
commitd7633c195a464e4d344ada9eea61afd10110598a (patch)
tree1f2da0b135f3ed84955e340cae823f00c4ce7284 /src/svnqt/repositorydata.hpp
parent3fa7eb804f67b2789f128075cc2522f398640250 (diff)
downloadtdesvn-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/repositorydata.hpp')
-rw-r--r--src/svnqt/repositorydata.hpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/svnqt/repositorydata.hpp b/src/svnqt/repositorydata.hpp
index 9884b70..8e2e8d1 100644
--- a/src/svnqt/repositorydata.hpp
+++ b/src/svnqt/repositorydata.hpp
@@ -25,7 +25,7 @@
#include "svnqt/apr.hpp"
#include "svnqt/svnqt_defines.hpp"
-#include <qstring.h>
+#include <tqstring.h>
#include <svn_repos.h>
#include <svn_error.h>
@@ -39,7 +39,7 @@ class RepositoryListener;
/**
@author Rajko Albrecht <ral@alwins-world.de>
*/
-class SVNQT_NOEXPORT RepositoryData{
+class SVNTQT_NOEXPORT RepositoryData{
friend class Repository;
public:
@@ -47,14 +47,14 @@ public:
virtual ~RepositoryData();
void Close();
- svn_error_t * Open(const QString&);
- svn_error_t * CreateOpen(const QString&path, const QString&fstype, bool _bdbnosync = false,
+ svn_error_t * Open(const TQString&);
+ svn_error_t * CreateOpen(const TQString&path, const TQString&fstype, bool _bdbnosync = false,
bool _bdbautologremove = true, bool _pre_1_4_compat=false, bool _pre_1_5_compat=false);
- void reposFsWarning(const QString&msg);
- svn_error_t* dump(const QString&output,const svn::Revision&start,const svn::Revision&end, bool incremental, bool use_deltas);
- svn_error_t* loaddump(const QString&dump,svn_repos_load_uuid uuida, const QString&parentFolder, bool usePre, bool usePost);
- static svn_error_t* hotcopy(const QString&src,const QString&dest,bool cleanlogs);
+ void reposFsWarning(const TQString&msg);
+ svn_error_t* dump(const TQString&output,const svn::Revision&start,const svn::Revision&end, bool incremental, bool use_deltas);
+ svn_error_t* loaddump(const TQString&dump,svn_repos_load_uuid uuida, const TQString&tqparentFolder, bool usePre, bool usePost);
+ static svn_error_t* hotcopy(const TQString&src,const TQString&dest,bool cleanlogs);
protected:
Pool m_Pool;