summaryrefslogtreecommitdiffstats
path: root/src/svnqt/repositorydata.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/svnqt/repositorydata.cpp')
-rw-r--r--src/svnqt/repositorydata.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/svnqt/repositorydata.cpp b/src/svnqt/repositorydata.cpp
index 532c80a..5625f70 100644
--- a/src/svnqt/repositorydata.cpp
+++ b/src/svnqt/repositorydata.cpp
@@ -209,7 +209,7 @@ svn_error_t* RepositoryData::dump(const TQString&output,const svn::Revision&star
return SVN_NO_ERROR;
}
-svn_error_t* RepositoryData::loaddump(const TQString&dump,svn_repos_load_uuid uuida, const TQString&tqparentFolder, bool usePre, bool usePost)
+svn_error_t* RepositoryData::loaddump(const TQString&dump,svn_repos_load_uuid uuida, const TQString&parentFolder, bool usePre, bool usePost)
{
if (!m_Repository) {
return svn_error_create(SVN_ERR_CANCELLED,0,"No repository selected.");
@@ -219,10 +219,10 @@ svn_error_t* RepositoryData::loaddump(const TQString&dump,svn_repos_load_uuid uu
Pool pool;
const char*src_path = apr_pstrdup (pool,dump.TOUTF8());
const char*dest_path;
- if (tqparentFolder.isEmpty()) {
+ if (parentFolder.isEmpty()) {
dest_path=0;
} else {
- dest_path=apr_pstrdup (pool,tqparentFolder.TOUTF8());
+ dest_path=apr_pstrdup (pool,parentFolder.TOUTF8());
}
src_path = svn_path_internal_style(src_path, pool);