summaryrefslogtreecommitdiffstats
path: root/src/svnfrontend/dumprepo_impl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/svnfrontend/dumprepo_impl.cpp')
-rw-r--r--src/svnfrontend/dumprepo_impl.cpp14
1 files changed, 7 insertions, 7 deletions
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 <kcombobox.h>
#include <knuminput.h>
-#include <qcheckbox.h>
+#include <tqcheckbox.h>
-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);
}