summaryrefslogtreecommitdiffstats
path: root/src/svnqt/client_modify.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
commit4be907152dfb5461311d9db1d63120c28a0bad0a (patch)
tree6ee40d7c10190ef860a9be24d2938bef888bb262 /src/svnqt/client_modify.cpp
parent421a6fdcbe08c6297214e7397ab98e535148686f (diff)
downloadtdesvn-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/client_modify.cpp')
-rw-r--r--src/svnqt/client_modify.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/svnqt/client_modify.cpp b/src/svnqt/client_modify.cpp
index c3b7c19..cd250ee 100644
--- a/src/svnqt/client_modify.cpp
+++ b/src/svnqt/client_modify.cpp
@@ -169,7 +169,7 @@ namespace svn
void
Client_impl::add (const Path & path,
- svn::Depth depth,bool force, bool no_ignore, bool add_tqparents) throw (ClientException)
+ svn::Depth depth,bool force, bool no_ignore, bool add_parents) throw (ClientException)
{
Pool pool;
#if ((SVN_VER_MAJOR == 1) && (SVN_VER_MINOR >= 5)) || (SVN_VER_MAJOR > 1)
@@ -178,11 +178,11 @@ namespace svn
internal::DepthToSvn(depth),
force,
no_ignore,
- add_tqparents,
+ add_parents,
*m_context,
pool);
#else
- Q_UNUSED(add_tqparents);
+ Q_UNUSED(add_parents);
svn_error_t * error =
svn_client_add3 (path.cstr (),
depth==DepthInfinity,