summaryrefslogtreecommitdiffstats
path: root/src/svnqt/wc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/svnqt/wc.cpp')
-rw-r--r--src/svnqt/wc.cpp28
1 files changed, 11 insertions, 17 deletions
diff --git a/src/svnqt/wc.cpp b/src/svnqt/wc.cpp
index bf3b5dd..413fb10 100644
--- a/src/svnqt/wc.cpp
+++ b/src/svnqt/wc.cpp
@@ -1,5 +1,5 @@
/*
- * Port for usage with qt-framework and development for tdesvn
+ * Port for usage with tqt-framework and development for tdesvn
* (C) 2005-2007 by Rajko Albrecht
* http://tdesvn.alwins-world.de
*/
@@ -32,10 +32,10 @@
#include "svn_wc.h"
// svncpp
-#include "exception.hpp"
-#include "path.hpp"
-#include "pool.hpp"
-#include "wc.hpp"
+#include "exception.h"
+#include "path.h"
+#include "pool.h"
+#include "wc.h"
namespace svn
{
@@ -62,7 +62,7 @@ namespace svn
void
Wc::ensureAdm (const TQString& dir, const TQString& uuid,
- const TQString& url, const Revision & revision) throw (ClientException)
+ const TQString& url, const Revision & revision)
{
Pool pool;
Path dirPath (dir);
@@ -79,18 +79,18 @@ namespace svn
throw ClientException (error);
}
- const svn_wc_entry_t *Wc::getEntry( const TQString &path ) throw ( ClientException )
+ const svn_wc_entry_t *Wc::getEntry( const TQString &path )
{
Pool pool;
Path itemPath(path);
svn_error_t * error = 0;
svn_wc_adm_access_t *adm_access;
const svn_wc_entry_t *entry;
- error = svn_wc_adm_probe_open2(&adm_access,0,itemPath.path().TOUTF8(),FALSE,0,pool);
+ error = svn_wc_adm_probe_open2(&adm_access,0,itemPath.path().TOUTF8(),false,0,pool);
if (error!=0) {
throw ClientException(error);
}
- error = svn_wc_entry(&entry,itemPath.path().TOUTF8(),adm_access,FALSE,pool);
+ error = svn_wc_entry(&entry,itemPath.path().TOUTF8(),adm_access,false,pool);
if (error!=0) {
throw ClientException(error);
}
@@ -101,7 +101,7 @@ namespace svn
return entry;
}
- TQString Wc::getUrl(const TQString&path) throw (ClientException)
+ TQString Wc::getUrl(const TQString&path)
{
TQString result = "";
const svn_wc_entry_t *entry;
@@ -111,7 +111,7 @@ namespace svn
return result;
}
- TQString Wc::getRepos(const TQString&path) throw (ClientException)
+ TQString Wc::getRepos(const TQString&path)
{
TQString result = "";
const svn_wc_entry_t *entry;
@@ -121,9 +121,3 @@ namespace svn
return result;
}
}
-
-/* -----------------------------------------------------------------
- * local variables:
- * eval: (load-file "../../rapidsvn-dev.el")
- * end:
- */