diff options
Diffstat (limited to 'src/svnqt/client_status.cpp')
-rw-r--r-- | src/svnqt/client_status.cpp | 40 |
1 files changed, 17 insertions, 23 deletions
diff --git a/src/svnqt/client_status.cpp b/src/svnqt/client_status.cpp index 4b437a3..7460745 100644 --- a/src/svnqt/client_status.cpp +++ b/src/svnqt/client_status.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-2008 by Rajko Albrecht * http://tdesvn.alwins-world.de */ @@ -33,23 +33,23 @@ // svncpp -#include "svnqt/client_impl.hpp" -#include "svnqt/helper.hpp" +#include "svnqt/client_impl.h" +#include "svnqt/helper.h" // Subversion api #include "svn_client.h" #include "svn_path.h" //#include "svn_utf.h" -#include "svnqt/dirent.hpp" -#include "svnqt/exception.hpp" -#include "svnqt/pool.hpp" -#include "svnqt/status.hpp" -#include "svnqt/targets.hpp" -#include "svnqt/info_entry.hpp" -#include "svnqt/url.hpp" -#include "svnqt/svnqt_defines.hpp" -#include "svnqt/context_listener.hpp" +#include "svnqt/dirent.h" +#include "svnqt/exception.h" +#include "svnqt/pool.h" +#include "svnqt/status.h" +#include "svnqt/targets.h" +#include "svnqt/info_entry.h" +#include "svnqt/url.h" +#include "svnqt/svnqt_defines.h" +#include "svnqt/context_listener.h" namespace svn { @@ -398,7 +398,7 @@ namespace svn const Revision revision, bool detailed_remote, const bool hide_externals, - const StringArray & changelists) throw (ClientException) + const StringArray & changelists) { if (Url::isValid (path.path())) { return remoteStatus (this, path, depth, get_all, update, @@ -483,7 +483,7 @@ namespace svn } StatusPtr - Client_impl::singleStatus (const Path& path,bool update,const Revision revision) throw (ClientException) + Client_impl::singleStatus (const Path& path,bool update,const Revision revision) { if (Url::isValid (path.path())) return remoteSingleStatus (this, path,revision, m_context); @@ -500,7 +500,7 @@ namespace svn bool strictNodeHistory,int limit, bool include_merged_revisions, const StringArray&revprops - ) throw (ClientException) + ) { Targets target(path); Pool pool; @@ -573,7 +573,7 @@ namespace svn bool strictNodeHistory,int limit, bool include_merged_revisions, const StringArray&revprops - ) throw (ClientException) + ) { Targets target(path); Pool pool; @@ -647,7 +647,7 @@ namespace svn const Revision & rev, const Revision & peg_revision, const StringArray&changelists - ) throw (ClientException) + ) { InfoEntries ientries; @@ -727,9 +727,3 @@ namespace svn } } - -/* ----------------------------------------------------------------- - * local variables: - * eval: (load-file "../../rapidsvn-dev.el") - * end: - */ |