From d7633c195a464e4d344ada9eea61afd10110598a Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 4 May 2011 19:54:24 +0000 Subject: Port kdesvn to TQt4 This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kdesvn@1230412 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- src/svnfrontend/dumprepo_impl.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/svnfrontend/dumprepo_impl.cpp') diff --git a/src/svnfrontend/dumprepo_impl.cpp b/src/svnfrontend/dumprepo_impl.cpp index dfaeb69..577c0bd 100644 --- a/src/svnfrontend/dumprepo_impl.cpp +++ b/src/svnfrontend/dumprepo_impl.cpp @@ -25,10 +25,10 @@ #include #include -#include +#include -DumpRepo_impl::DumpRepo_impl(QWidget *parent, const char *name) - :DumpRepoDlg(parent, name) +DumpRepo_impl::DumpRepo_impl(TQWidget *tqparent, const char *name) + :DumpRepoDlg(tqparent, name) { } @@ -42,10 +42,10 @@ void DumpRepo_impl::slotDumpRange(bool how) /*! \fn DumpRepo_impl::reposPath() */ -QString DumpRepo_impl::reposPath() +TQString DumpRepo_impl::reposPath() { KURL u = m_ReposPath->url(); - QString res = u.path(); + TQString res = u.path(); while (res.endsWith("/")) { res.truncate(res.length()-1); } @@ -56,10 +56,10 @@ QString DumpRepo_impl::reposPath() /*! \fn DumpRepo_impl::targetFile() */ -QString DumpRepo_impl::targetFile() +TQString DumpRepo_impl::targetFile() { KURL u = m_OutputFile->url(); - QString res = u.path(); + TQString res = u.path(); while (res.endsWith("/")) { res.truncate(res.length()-1); } -- cgit v1.2.3