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/loaddmpdlg_impl.cpp | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'src/svnfrontend/loaddmpdlg_impl.cpp') diff --git a/src/svnfrontend/loaddmpdlg_impl.cpp b/src/svnfrontend/loaddmpdlg_impl.cpp index 63954a2..48565b4 100644 --- a/src/svnfrontend/loaddmpdlg_impl.cpp +++ b/src/svnfrontend/loaddmpdlg_impl.cpp @@ -19,16 +19,16 @@ ***************************************************************************/ #include "loaddmpdlg_impl.h" -#include -#include +#include +#include #include #include -#include -#include -#include +#include +#include +#include -LoadDmpDlg_impl::LoadDmpDlg_impl(QWidget *parent, const char *name) - :LoadDmpDlg(parent, name) +LoadDmpDlg_impl::LoadDmpDlg_impl(TQWidget *tqparent, const char *name) + :LoadDmpDlg(tqparent, name) { } @@ -66,10 +66,10 @@ int LoadDmpDlg_impl::uuidAction()const /*! \fn LoadDmpDlg_impl::dumpFile()const */ -QString LoadDmpDlg_impl::dumpFile()const +TQString LoadDmpDlg_impl::dumpFile()const { KURL u = m_Dumpfile->url(); - QString res = u.path(); + TQString res = u.path(); while (res.endsWith("/")) { res.truncate(res.length()-1); } @@ -80,10 +80,10 @@ QString LoadDmpDlg_impl::dumpFile()const /*! \fn LoadDmpDlg_impl::repository()const */ -QString LoadDmpDlg_impl::repository()const +TQString LoadDmpDlg_impl::repository()const { KURL u = m_Repository->url(); - QString res = u.path(); + TQString res = u.path(); while (res.endsWith("/")) { res.truncate(res.length()-1); } @@ -92,11 +92,11 @@ QString LoadDmpDlg_impl::repository()const /*! - \fn LoadDmpDlg_impl::parentPath()const + \fn LoadDmpDlg_impl::tqparentPath()const */ -QString LoadDmpDlg_impl::parentPath()const +TQString LoadDmpDlg_impl::tqparentPath()const { - QString res = m_Rootfolder->text(); + TQString res = m_Rootfolder->text(); while (res.endsWith("/")) { res.truncate(res.length()-1); } -- cgit v1.2.1