diff options
Diffstat (limited to 'src/svnfrontend/createrepo_impl.cpp')
-rw-r--r-- | src/svnfrontend/createrepo_impl.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/svnfrontend/createrepo_impl.cpp b/src/svnfrontend/createrepo_impl.cpp index 160f0ab..5fdd126 100644 --- a/src/svnfrontend/createrepo_impl.cpp +++ b/src/svnfrontend/createrepo_impl.cpp @@ -24,7 +24,7 @@ #include <kurlrequester.h> #include <kcombobox.h> -#include <qcheckbox.h> +#include <tqcheckbox.h> class RecurseCheck { @@ -34,8 +34,8 @@ public: ~RecurseCheck(){value = false;} }; -Createrepo_impl::Createrepo_impl(bool enable_compat13, bool enable_compat14, QWidget *parent, const char *name) - :CreateRepo_Dlg(parent, name) +Createrepo_impl::Createrepo_impl(bool enable_compat13, bool enable_compat14, TQWidget *tqparent, const char *name) + :CreateRepo_Dlg(tqparent, name) { inChangeCompat=true; m_DisableFsync->setEnabled(false); @@ -61,17 +61,17 @@ void Createrepo_impl::fsTypeChanged(int which) m_LogKeep->setEnabled(which==1); } -QString Createrepo_impl::targetDir() +TQString Createrepo_impl::targetDir() { KURL u = m_ReposPathinput->url(); - QString res = u.path(); + TQString res = u.path(); while (res.endsWith("/")) { res.truncate(res.length()-1); } return res; } -QString Createrepo_impl::fsType() +TQString Createrepo_impl::fsType() { return m_FilesystemSelector->currentText(); } |