summaryrefslogtreecommitdiffstats
path: root/src/svnfrontend/hotcopydlg_impl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/svnfrontend/hotcopydlg_impl.cpp')
-rw-r--r--src/svnfrontend/hotcopydlg_impl.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/svnfrontend/hotcopydlg_impl.cpp b/src/svnfrontend/hotcopydlg_impl.cpp
index 9211929..67ef264 100644
--- a/src/svnfrontend/hotcopydlg_impl.cpp
+++ b/src/svnfrontend/hotcopydlg_impl.cpp
@@ -19,12 +19,12 @@
***************************************************************************/
#include "hotcopydlg_impl.h"
-#include <qcheckbox.h>
+#include <tqcheckbox.h>
#include <kurl.h>
#include <kurlrequester.h>
-HotcopyDlg_impl::HotcopyDlg_impl(QWidget *parent, const char *name)
- :HotcopyDlg(parent, name)
+HotcopyDlg_impl::HotcopyDlg_impl(TQWidget *tqparent, const char *name)
+ :HotcopyDlg(tqparent, name)
{
}
@@ -32,12 +32,12 @@ HotcopyDlg_impl::~HotcopyDlg_impl()
{
}
-QString HotcopyDlg_impl::srcPath()const
+TQString HotcopyDlg_impl::srcPath()const
{
return checkPath(m_SrcpathEditor->url());
}
-QString HotcopyDlg_impl::destPath()const
+TQString HotcopyDlg_impl::destPath()const
{
return checkPath(m_DestpathEditor->url());
}
@@ -47,10 +47,10 @@ bool HotcopyDlg_impl::cleanLogs()const
return m_Cleanlogs->isChecked();
}
-QString HotcopyDlg_impl::checkPath(const QString&_p)const
+TQString HotcopyDlg_impl::checkPath(const TQString&_p)const
{
KURL u = _p;
- QString res = u.path();
+ TQString res = u.path();
while (res.endsWith("/")) {
res.truncate(res.length()-1);
}