summaryrefslogtreecommitdiffstats
path: root/vcs/subversion/kdevsvnd_widgets.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'vcs/subversion/kdevsvnd_widgets.cpp')
-rw-r--r--vcs/subversion/kdevsvnd_widgets.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/vcs/subversion/kdevsvnd_widgets.cpp b/vcs/subversion/kdevsvnd_widgets.cpp
index 16e35ce3..8fd05950 100644
--- a/vcs/subversion/kdevsvnd_widgets.cpp
+++ b/vcs/subversion/kdevsvnd_widgets.cpp
@@ -13,12 +13,12 @@
*/
#include "kdevsvnd_widgets.h"
-#include <qpushbutton.h>
-#include <qlistview.h>
-#include <qlabel.h>
+#include <tqpushbutton.h>
+#include <tqlistview.h>
+#include <tqlabel.h>
#include <klocale.h>
-SvnSSLTrustPrompt::SvnSSLTrustPrompt( QWidget* parent, const char* name, bool modal, WFlags f )
+SvnSSLTrustPrompt::SvnSSLTrustPrompt( TQWidget* parent, const char* name, bool modal, WFlags f )
:SvnSSLTrustPromptBase( parent, name, modal, f )
, m_code(-1)
{
@@ -27,24 +27,24 @@ SvnSSLTrustPrompt::SvnSSLTrustPrompt( QWidget* parent, const char* name, bool mo
btnPermanent->setText(i18n("Accept Permanently"));
btnTemporary->setText(i18n("Accept Temporarily"));
btnReject->setText(i18n("Reject"));
- connect( btnPermanent, SIGNAL(clicked()), this, SLOT(setPermanent()) );
- connect( btnTemporary, SIGNAL(clicked()), this, SLOT(setTemporary()) );
- connect( btnReject, SIGNAL(clicked()), this, SLOT(setRejected ()) );
+ connect( btnPermanent, TQT_SIGNAL(clicked()), this, TQT_SLOT(setPermanent()) );
+ connect( btnTemporary, TQT_SIGNAL(clicked()), this, TQT_SLOT(setTemporary()) );
+ connect( btnReject, TQT_SIGNAL(clicked()), this, TQT_SLOT(setRejected ()) );
}
SvnSSLTrustPrompt::~SvnSSLTrustPrompt()
{}
-void SvnSSLTrustPrompt::setupCertInfo( QString hostname, QString fingerPrint, QString validfrom, QString validuntil, QString issuerName, QString ascii_cert )
+void SvnSSLTrustPrompt::setupCertInfo( TQString hostname, TQString fingerPrint, TQString validfrom, TQString validuntil, TQString issuerName, TQString ascii_cert )
{
// setup texts
- QListViewItem *host= new QListViewItem(listView1, i18n("Hostname"), hostname );
- QListViewItem *finger = new QListViewItem(listView1, i18n("FingerPrint"), fingerPrint );
- QListViewItem *validFrom = new QListViewItem(listView1, i18n("Valid From"), validfrom );
- QListViewItem *validUntil = new QListViewItem(listView1, i18n("Valid Until"), validuntil );
- QListViewItem *issName = new QListViewItem(listView1, i18n("Issuer"), issuerName );
- QListViewItem *cert = new QListViewItem(listView1, i18n("Cert"), ascii_cert );
+ TQListViewItem *host= new TQListViewItem(listView1, i18n("Hostname"), hostname );
+ TQListViewItem *finger = new TQListViewItem(listView1, i18n("FingerPrint"), fingerPrint );
+ TQListViewItem *validFrom = new TQListViewItem(listView1, i18n("Valid From"), validfrom );
+ TQListViewItem *validUntil = new TQListViewItem(listView1, i18n("Valid Until"), validuntil );
+ TQListViewItem *issName = new TQListViewItem(listView1, i18n("Issuer"), issuerName );
+ TQListViewItem *cert = new TQListViewItem(listView1, i18n("Cert"), ascii_cert );
}
-void SvnSSLTrustPrompt::setupFailedReasonMsg( QString msg )
+void SvnSSLTrustPrompt::setupFailedReasonMsg( TQString msg )
{
errMsgLabel->setText( msg );
}