From d6f8bbb45b267065a6907e71ff9c98bb6d161241 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:56:07 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1157658 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- vcs/subversion/kdevsvnd_widgets.cpp | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'vcs/subversion/kdevsvnd_widgets.cpp') 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 -#include -#include +#include +#include +#include #include -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 ); } -- cgit v1.2.1