diff options
Diffstat (limited to 'vcs/subversion/svn_copywidget.cpp')
-rw-r--r-- | vcs/subversion/svn_copywidget.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/vcs/subversion/svn_copywidget.cpp b/vcs/subversion/svn_copywidget.cpp index a5d74bcb..30b25fd7 100644 --- a/vcs/subversion/svn_copywidget.cpp +++ b/vcs/subversion/svn_copywidget.cpp @@ -5,18 +5,18 @@ #include <kurlrequester.h> #include <knuminput.h> #include <kcombobox.h> -#include <qradiobutton.h> +#include <tqradiobutton.h> -SvnCopyDialog::SvnCopyDialog( const QString &reqPath, SvnGlobal::SvnInfoHolder *holder, QWidget *parent ) +SvnCopyDialog::SvnCopyDialog( const TQString &reqPath, SvnGlobal::SvnInfoHolder *holder, TQWidget *parent ) : SvnCopyDialogBase( parent ) , m_holder(holder) { reqEdit->setText( reqPath ); - connect( urlRadio, SIGNAL(clicked()), this, SLOT(setSourceAsUrl()) ); - connect( pathRadio, SIGNAL(clicked()), this, SLOT(setSourceAsLocalPath()) ); - connect( revnumRadio, SIGNAL(toggled(bool)), revnumInput, SLOT(setEnabled(bool)) ); - connect( revnumRadio, SIGNAL(toggled(bool)), revkindCombo, SLOT(setDisabled(bool)) ); + connect( urlRadio, TQT_SIGNAL(clicked()), this, TQT_SLOT(setSourceAsUrl()) ); + connect( pathRadio, TQT_SIGNAL(clicked()), this, TQT_SLOT(setSourceAsLocalPath()) ); + connect( revnumRadio, TQT_SIGNAL(toggled(bool)), revnumInput, TQT_SLOT(setEnabled(bool)) ); + connect( revnumRadio, TQT_SIGNAL(toggled(bool)), revkindCombo, TQT_SLOT(setDisabled(bool)) ); // In many cases, users copy from reository to repository. This is for making tag/branche. // The case where copying from local path to repository may be lesser than the above one. @@ -45,12 +45,12 @@ int SvnCopyDialog::revision() return -1; } -QString SvnCopyDialog::revKind() +TQString SvnCopyDialog::revKind() { if( revkindRadio->isChecked() ) return revkindCombo->currentText(); else - return QString(""); + return TQString(""); } KURL SvnCopyDialog::destUrl() |