diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
commit | 4be907152dfb5461311d9db1d63120c28a0bad0a (patch) | |
tree | 6ee40d7c10190ef860a9be24d2938bef888bb262 /src/svnqt/repositorydata.cpp | |
parent | 421a6fdcbe08c6297214e7397ab98e535148686f (diff) | |
download | tdesvn-4be907152dfb5461311d9db1d63120c28a0bad0a.tar.gz tdesvn-4be907152dfb5461311d9db1d63120c28a0bad0a.zip |
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...]
tqinvalidate[...]
tqparent[...]
tqmask[...]
tqlayout[...]
tqalignment[...]
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kdesvn@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/svnqt/repositorydata.cpp')
-rw-r--r-- | src/svnqt/repositorydata.cpp | 6 |
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); |