summaryrefslogtreecommitdiffstats
path: root/src/svnqt/repository.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/svnqt/repository.h')
-rw-r--r--src/svnqt/repository.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/svnqt/repository.h b/src/svnqt/repository.h
index 05913b2..ddff4f6 100644
--- a/src/svnqt/repository.h
+++ b/src/svnqt/repository.h
@@ -63,7 +63,7 @@ public:
\param path Path to a local repository, must not be an url
\exception ClientException will be thrown in case of an error
*/
- void Open(const TQString&path) throw (ClientException);
+ void Open(const TQString&path);
//! Creates and open a new repository
/*!
* Creates a new repository in path with type fstype. If create succeeded open and assigns with the object.
@@ -75,7 +75,7 @@ public:
* \param _pre_1_4_compat Create repository compatibel to version earlier than 1.4 (only used with subversion 1.4)
*/
void 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) throw (ClientException);
+ bool _bdbautologremove = true, bool _pre_1_4_compat=false, bool _pre_1_5_compat=false);
//! dump content of repository to a file
/*!
The repository must opend before. Progress message go trough the assigned svn::repository::RepositoryListener object.
@@ -87,7 +87,7 @@ public:
\param use_deltas use deltas in dump output
\exception ClientException will be thrown in case of an error
*/
- void dump(const TQString&output,const svn::Revision&start,const svn::Revision&end, bool incremental, bool use_deltas)throw (ClientException);
+ void dump(const TQString&output,const svn::Revision&start,const svn::Revision&end, bool incremental, bool use_deltas);
//! load a dump into repository
/*!
The repository must opened before. Progress message go trough the assigned svn::repository::RepositoryListener object.
@@ -98,7 +98,7 @@ public:
\param usePost use post-commit-hook
\exception ClientException will be thrown in case of an error
*/
- void loaddump(const TQString&dump,LOAD_UUID uuida, const TQString&parentFolder, bool usePre, bool usePost)throw (ClientException);
+ void loaddump(const TQString&dump,LOAD_UUID uuida, const TQString&parentFolder, bool usePre, bool usePost);
//! copy a repository to a new location
/*!
\param src the repository path to copy
@@ -106,7 +106,7 @@ public:
\param cleanlogs remove redundand log files from source
\exception ClientException will be thrown in case of an error
*/
- static void hotcopy(const TQString&src,const TQString&dest,bool cleanlogs)throw (ClientException);
+ static void hotcopy(const TQString&src,const TQString&dest,bool cleanlogs);
private:
RepositoryData*m_Data;