@ -265,7 +265,7 @@ TQString whatstr;
grid = new TQGridLayout ( tabSSL , 7 , 2 , KDialog : : marginHint ( ) ,
KDialog : : spacingHint ( ) ) ;
mUseTLS = new TQCheckBox ( i18n ( " Enable &TLS support if supported by the server " ) , tabSSL ) ;
connect ( mUseTLS , TQ T _SIGNAL( clicked ( ) ) , TQ T _SLOT( configChanged ( ) ) ) ;
connect ( mUseTLS , TQ _SIGNAL( clicked ( ) ) , TQ _SLOT( configChanged ( ) ) ) ;
grid - > addWidget ( mUseTLS , 0 , 0 ) ;
whatstr = i18n ( " TLS is the newest revision of the SSL protocol. "
" It integrates better with other protocols and has "
@ -273,14 +273,14 @@ TQString whatstr;
TQWhatsThis : : add ( mUseTLS , whatstr ) ;
mUseSSLv2 = new TQCheckBox ( i18n ( " Enable SSLv&2 " ) , tabSSL ) ;
connect ( mUseSSLv2 , TQ T _SIGNAL( clicked ( ) ) , TQ T _SLOT( configChanged ( ) ) ) ;
connect ( mUseSSLv2 , TQ _SIGNAL( clicked ( ) ) , TQ _SLOT( configChanged ( ) ) ) ;
grid - > addWidget ( mUseSSLv2 , 1 , 0 ) ;
whatstr = i18n ( " SSL v2 is the second revision of the SSL protocol. "
" It is most common to enable v2 and v3. " ) ;
TQWhatsThis : : add ( mUseSSLv2 , whatstr ) ;
mUseSSLv3 = new TQCheckBox ( i18n ( " Enable SSLv&3 " ) , tabSSL ) ;
connect ( mUseSSLv3 , TQ T _SIGNAL( clicked ( ) ) , TQ T _SLOT( configChanged ( ) ) ) ;
connect ( mUseSSLv3 , TQ _SIGNAL( clicked ( ) ) , TQ _SLOT( configChanged ( ) ) ) ;
grid - > addWidget ( mUseSSLv3 , 1 , 1 ) ;
whatstr = i18n ( " SSL v3 is the third revision of the SSL protocol. "
" It is most common to enable v2 and v3. " ) ;
@ -296,8 +296,8 @@ TQString whatstr;
SSLv2Box - > setSelectionMode ( TQListView : : NoSelection ) ;
grid - > addWidget ( SSLv2Box , 2 , 0 ) ;
connect ( mUseSSLv2 , TQ T _SIGNAL( toggled ( bool ) ) ,
SSLv2Box , TQ T _SLOT( setEnabled ( bool ) ) ) ;
connect ( mUseSSLv2 , TQ _SIGNAL( toggled ( bool ) ) ,
SSLv2Box , TQ _SLOT( setEnabled ( bool ) ) ) ;
# else
TQLabel * nossllabel = new TQLabel ( i18n ( " SSL ciphers cannot be configured "
" because this module was not linked "
@ -321,8 +321,8 @@ TQString whatstr;
TQWhatsThis : : add ( SSLv3Box , whatstr ) ;
SSLv3Box - > setSelectionMode ( TQListView : : NoSelection ) ;
grid - > addWidget ( SSLv3Box , 2 , 1 ) ;
connect ( mUseSSLv3 , TQ T _SIGNAL( toggled ( bool ) ) ,
SSLv3Box , TQ T _SLOT( setEnabled ( bool ) ) ) ;
connect ( mUseSSLv3 , TQ _SIGNAL( toggled ( bool ) ) ,
SSLv3Box , TQ _SLOT( setEnabled ( bool ) ) ) ;
loadCiphers ( ) ;
@ -346,7 +346,7 @@ TQString whatstr;
TQWhatsThis : : add ( cwcb , whatStr ) ;
connect ( cwcb , TQ T _SIGNAL( activated ( int ) ) , TQ T _SLOT( slotSelectCipher ( int ) ) ) ;
connect ( cwcb , TQ _SIGNAL( activated ( int ) ) , TQ _SLOT( slotSelectCipher ( int ) ) ) ;
@ -354,21 +354,21 @@ TQString whatstr;
# endif
mWarnOnEnter = new TQCheckBox ( i18n ( " Warn on &entering SSL mode " ) , tabSSL ) ;
connect ( mWarnOnEnter , TQ T _SIGNAL( clicked ( ) ) , TQ T _SLOT( configChanged ( ) ) ) ;
connect ( mWarnOnEnter , TQ _SIGNAL( clicked ( ) ) , TQ _SLOT( configChanged ( ) ) ) ;
grid - > addWidget ( mWarnOnEnter , 5 , 0 ) ;
whatstr = i18n ( " If selected, you will be notified when entering an SSL "
" enabled site " ) ;
TQWhatsThis : : add ( mWarnOnEnter , whatstr ) ;
mWarnOnLeave = new TQCheckBox ( i18n ( " Warn on &leaving SSL mode " ) , tabSSL ) ;
connect ( mWarnOnLeave , TQ T _SIGNAL( clicked ( ) ) , TQ T _SLOT( configChanged ( ) ) ) ;
connect ( mWarnOnLeave , TQ _SIGNAL( clicked ( ) ) , TQ _SLOT( configChanged ( ) ) ) ;
grid - > addWidget ( mWarnOnLeave , 5 , 1 ) ;
whatstr = i18n ( " If selected, you will be notified when leaving an SSL "
" based site. " ) ;
TQWhatsThis : : add ( mWarnOnLeave , whatstr ) ;
mWarnOnUnencrypted = new TQCheckBox ( i18n ( " Warn on sending &unencrypted data " ) , tabSSL ) ;
connect ( mWarnOnUnencrypted , TQ T _SIGNAL( clicked ( ) ) , TQ T _SLOT( configChanged ( ) ) ) ;
connect ( mWarnOnUnencrypted , TQ _SIGNAL( clicked ( ) ) , TQ _SLOT( configChanged ( ) ) ) ;
grid - > addWidget ( mWarnOnUnencrypted , 6 , 0 ) ;
whatstr = i18n ( " If selected, you will be notified before sending "
" unencrypted data via a web browser. " ) ;
@ -376,7 +376,7 @@ TQString whatstr;
#if 0 // NOT IMPLEMENTED IN KDE 3.0
mWarnOnMixed = new TQCheckBox ( i18n ( " Warn on &mixed SSL/non-SSL pages " ) , tabSSL ) ;
connect ( mWarnOnMixed , TQ T _SIGNAL( clicked ( ) ) , TQ T _SLOT( configChanged ( ) ) ) ;
connect ( mWarnOnMixed , TQ _SIGNAL( clicked ( ) ) , TQ _SLOT( configChanged ( ) ) ) ;
grid - > addWidget ( mWarnOnMixed , 6 , 1 ) ;
whatstr = i18n ( " If selected, you will be notified if you view a page "
" that has both encrypted and non-encrypted parts. " ) ;
@ -396,9 +396,9 @@ TQString whatstr;
oPath = new KURLRequester ( oInfo ) ;
oPath - > setMode ( KFile : : Directory ) ;
oTest = new TQPushButton ( i18n ( " &Test " ) , oInfo ) ;
connect ( oTest , TQ T _SIGNAL( clicked ( ) ) , TQ T _SLOT( slotTestOSSL ( ) ) ) ;
connect ( oTest , TQ _SIGNAL( clicked ( ) ) , TQ _SLOT( slotTestOSSL ( ) ) ) ;
connect ( oPath , TQ T _SIGNAL( textChanged ( const TQString & ) ) , TQ T _SLOT( configChanged ( ) ) ) ;
connect ( oPath , TQ _SIGNAL( textChanged ( const TQString & ) ) , TQ _SLOT( configChanged ( ) ) ) ;
//
// Settings for the EGD
@ -406,9 +406,9 @@ TQString whatstr;
TQFrame * eFrame = new TQFrame ( tabOSSL ) ;
TQVBoxLayout * egrid = new TQVBoxLayout ( eFrame ) ;
mUseEGD = new TQCheckBox ( i18n ( " Use EGD " ) , eFrame ) ;
connect ( mUseEGD , TQ T _SIGNAL( clicked ( ) ) , TQ T _SLOT( slotUseEGD ( ) ) ) ;
connect ( mUseEGD , TQ _SIGNAL( clicked ( ) ) , TQ _SLOT( slotUseEGD ( ) ) ) ;
mUseEFile = new TQCheckBox ( i18n ( " Use entropy file " ) , eFrame ) ;
connect ( mUseEFile , TQ T _SIGNAL( clicked ( ) ) , TQ T _SLOT( slotUseEFile ( ) ) ) ;
connect ( mUseEFile , TQ _SIGNAL( clicked ( ) ) , TQ _SLOT( slotUseEFile ( ) ) ) ;
vbox - > addWidget ( eFrame ) ;
egrid - > addWidget ( mUseEGD ) ;
egrid - > addWidget ( mUseEFile ) ;
@ -419,7 +419,7 @@ TQString whatstr;
grid2 - > addWidget ( mEGDLabel , 0 , 0 ) ;
mEGDPath = new KURLRequester ( egdframe ) ;
grid2 - > addWidget ( mEGDPath , 0 , 1 ) ;
connect ( mEGDPath , TQ T _SIGNAL( textChanged ( const TQString & ) ) , TQ T _SLOT( configChanged ( ) ) ) ;
connect ( mEGDPath , TQ _SIGNAL( textChanged ( const TQString & ) ) , TQ _SLOT( configChanged ( ) ) ) ;
vbox - > addWidget ( egdframe ) ;
whatstr = i18n ( " If selected, OpenSSL will be asked to use the entropy gathering "
" daemon (EGD) for initializing the pseudo-random number generator. " ) ;
@ -454,35 +454,35 @@ TQString whatstr;
grid - > addMultiCellWidget ( yourSSLBox , 0 , 5 , 0 , 4 ) ;
yourSSLBox - > addColumn ( i18n ( " Common Name " ) ) ;
yourSSLBox - > addColumn ( i18n ( " Email Address " ) ) ;
connect ( yourSSLBox , TQ T _SIGNAL( selectionChanged ( ) ) , TQ T _SLOT( slotYourCertSelect ( ) ) ) ;
connect ( yourSSLBox , TQ _SIGNAL( selectionChanged ( ) ) , TQ _SLOT( slotYourCertSelect ( ) ) ) ;
yourSSLImport = new TQPushButton ( i18n ( " I&mport... " ) , tabYourSSLCert ) ;
connect ( yourSSLImport , TQ T _SIGNAL( clicked ( ) ) , TQ T _SLOT( slotYourImport ( ) ) ) ;
connect ( yourSSLImport , TQ _SIGNAL( clicked ( ) ) , TQ _SLOT( slotYourImport ( ) ) ) ;
grid - > addWidget ( yourSSLImport , 0 , 5 ) ;
yourSSLExport = new TQPushButton ( i18n ( " &Export... " ) , tabYourSSLCert ) ;
yourSSLExport - > setEnabled ( false ) ;
connect ( yourSSLExport , TQ T _SIGNAL( clicked ( ) ) , TQ T _SLOT( slotYourExport ( ) ) ) ;
connect ( yourSSLExport , TQ _SIGNAL( clicked ( ) ) , TQ _SLOT( slotYourExport ( ) ) ) ;
grid - > addWidget ( yourSSLExport , 1 , 5 ) ;
yourSSLRemove = new TQPushButton ( i18n ( " Remo&ve " ) , tabYourSSLCert ) ;
yourSSLRemove - > setEnabled ( false ) ;
connect ( yourSSLRemove , TQ T _SIGNAL( clicked ( ) ) , TQ T _SLOT( slotYourRemove ( ) ) ) ;
connect ( yourSSLRemove , TQ _SIGNAL( clicked ( ) ) , TQ _SLOT( slotYourRemove ( ) ) ) ;
grid - > addWidget ( yourSSLRemove , 2 , 5 ) ;
yourSSLUnlock = new TQPushButton ( i18n ( " &Unlock " ) , tabYourSSLCert ) ;
yourSSLUnlock - > setEnabled ( false ) ;
connect ( yourSSLUnlock , TQ T _SIGNAL( clicked ( ) ) , TQ T _SLOT( slotYourUnlock ( ) ) ) ;
connect ( yourSSLUnlock , TQ _SIGNAL( clicked ( ) ) , TQ _SLOT( slotYourUnlock ( ) ) ) ;
grid - > addWidget ( yourSSLUnlock , 3 , 5 ) ;
yourSSLVerify = new TQPushButton ( i18n ( " Verif&y " ) , tabYourSSLCert ) ;
yourSSLVerify - > setEnabled ( false ) ;
connect ( yourSSLVerify , TQ T _SIGNAL( clicked ( ) ) , TQ T _SLOT( slotYourVerify ( ) ) ) ;
connect ( yourSSLVerify , TQ _SIGNAL( clicked ( ) ) , TQ _SLOT( slotYourVerify ( ) ) ) ;
grid - > addWidget ( yourSSLVerify , 4 , 5 ) ;
yourSSLPass = new TQPushButton ( i18n ( " Chan&ge Password... " ) , tabYourSSLCert ) ;
yourSSLPass - > setEnabled ( false ) ;
connect ( yourSSLPass , TQ T _SIGNAL( clicked ( ) ) , TQ T _SLOT( slotYourPass ( ) ) ) ;
connect ( yourSSLPass , TQ _SIGNAL( clicked ( ) ) , TQ _SLOT( slotYourPass ( ) ) ) ;
grid - > addWidget ( yourSSLPass , 5 , 5 ) ;
grid - > addMultiCellWidget ( new KSeparator ( KSeparator : : HLine , tabYourSSLCert ) , 6 , 6 , 0 , 5 ) ;
@ -579,14 +579,14 @@ TQString whatstr;
hostCertBG - > setEnabled ( false ) ;
authRemove - > setEnabled ( false ) ;
connect ( defCertBox , TQ T _SIGNAL( activated ( int ) ) , this , TQ T _SLOT( configChanged ( ) ) ) ;
connect ( defCertBG , TQ T _SIGNAL( clicked ( int ) ) , this , TQ T _SLOT( configChanged ( ) ) ) ;
connect ( hostAuthList , TQ T _SIGNAL( selectionChanged ( ) ) , this , TQ T _SLOT( slotAuthItemChanged ( ) ) ) ;
connect ( authAdd , TQ T _SIGNAL( clicked ( ) ) , this , TQ T _SLOT( slotNewHostAuth ( ) ) ) ;
connect ( authRemove , TQ T _SIGNAL( clicked ( ) ) , this , TQ T _SLOT( slotRemoveHostAuth ( ) ) ) ;
connect ( authHost , TQ T _SIGNAL( textChanged ( const TQString & ) ) , this , TQ T _SLOT( slotAuthText ( const TQString & ) ) ) ;
connect ( hostCertBG , TQ T _SIGNAL( clicked ( int ) ) , this , TQ T _SLOT( slotAuthButtons ( ) ) ) ;
connect ( hostCertBox , TQ T _SIGNAL( activated ( int ) ) , this , TQ T _SLOT( slotAuthCombo ( ) ) ) ;
connect ( defCertBox , TQ _SIGNAL( activated ( int ) ) , this , TQ _SLOT( configChanged ( ) ) ) ;
connect ( defCertBG , TQ _SIGNAL( clicked ( int ) ) , this , TQ _SLOT( configChanged ( ) ) ) ;
connect ( hostAuthList , TQ _SIGNAL( selectionChanged ( ) ) , this , TQ _SLOT( slotAuthItemChanged ( ) ) ) ;
connect ( authAdd , TQ _SIGNAL( clicked ( ) ) , this , TQ _SLOT( slotNewHostAuth ( ) ) ) ;
connect ( authRemove , TQ _SIGNAL( clicked ( ) ) , this , TQ _SLOT( slotRemoveHostAuth ( ) ) ) ;
connect ( authHost , TQ _SIGNAL( textChanged ( const TQString & ) ) , this , TQ _SLOT( slotAuthText ( const TQString & ) ) ) ;
connect ( hostCertBG , TQ _SIGNAL( clicked ( int ) ) , this , TQ _SLOT( slotAuthButtons ( ) ) ) ;
connect ( hostCertBox , TQ _SIGNAL( activated ( int ) ) , this , TQ _SLOT( slotAuthCombo ( ) ) ) ;
# else
nossllabel = new TQLabel ( i18n ( " SSL certificates cannot be managed "
@ -607,7 +607,7 @@ TQString whatstr;
otherSSLBox = new TQListView ( tabOtherSSLCert ) ;
otherSSLBox - > setAllColumnsShowFocus ( true ) ;
connect ( otherSSLBox , TQ T _SIGNAL( selectionChanged ( ) ) , TQ T _SLOT( slotOtherCertSelect ( ) ) ) ;
connect ( otherSSLBox , TQ _SIGNAL( selectionChanged ( ) ) , TQ _SLOT( slotOtherCertSelect ( ) ) ) ;
whatstr = i18n ( " This list box shows which site and person certificates TDE "
" knows about. You can easily manage them from here. " ) ;
TQWhatsThis : : add ( otherSSLBox , whatstr ) ;
@ -616,21 +616,21 @@ TQString whatstr;
grid - > addMultiCellWidget ( otherSSLBox , 0 , 7 , 0 , 4 ) ;
otherSSLExport = new TQPushButton ( i18n ( " &Export... " ) , tabOtherSSLCert ) ;
connect ( otherSSLExport , TQ T _SIGNAL( clicked ( ) ) , TQ T _SLOT( slotExportCert ( ) ) ) ;
connect ( otherSSLExport , TQ _SIGNAL( clicked ( ) ) , TQ _SLOT( slotExportCert ( ) ) ) ;
grid - > addWidget ( otherSSLExport , 0 , 5 ) ;
whatstr = i18n ( " This button allows you to export the selected certificate "
" to a file of various formats. " ) ;
TQWhatsThis : : add ( otherSSLExport , whatstr ) ;
otherSSLRemove = new TQPushButton ( i18n ( " &Remove " ) , tabOtherSSLCert ) ;
connect ( otherSSLRemove , TQ T _SIGNAL( clicked ( ) ) , TQ T _SLOT( slotRemoveCert ( ) ) ) ;
connect ( otherSSLRemove , TQ _SIGNAL( clicked ( ) ) , TQ _SLOT( slotRemoveCert ( ) ) ) ;
grid - > addWidget ( otherSSLRemove , 1 , 5 ) ;
whatstr = i18n ( " This button removes the selected certificate "
" from the certificate cache. " ) ;
TQWhatsThis : : add ( otherSSLRemove , whatstr ) ;
otherSSLVerify = new TQPushButton ( i18n ( " &Verify " ) , tabOtherSSLCert ) ;
connect ( otherSSLVerify , TQ T _SIGNAL( clicked ( ) ) , TQ T _SLOT( slotVerifyCert ( ) ) ) ;
connect ( otherSSLVerify , TQ _SIGNAL( clicked ( ) ) , TQ _SLOT( slotVerifyCert ( ) ) ) ;
grid - > addWidget ( otherSSLVerify , 2 , 5 ) ;
whatstr = i18n ( " This button tests the selected certificate "
" for validity. " ) ;
@ -675,9 +675,9 @@ TQString whatstr;
cachePerm - > setEnabled ( false ) ;
cacheUntil - > setEnabled ( false ) ;
untilDate - > setEnabled ( false ) ;
connect ( cachePerm , TQ T _SIGNAL( clicked ( ) ) , TQ T _SLOT( slotPermanent ( ) ) ) ;
connect ( cacheUntil , TQ T _SIGNAL( clicked ( ) ) , TQ T _SLOT( slotUntil ( ) ) ) ;
connect ( untilDate , TQ T _SIGNAL( leftClickedURL ( ) ) , TQ T _SLOT( slotDatePick ( ) ) ) ;
connect ( cachePerm , TQ _SIGNAL( clicked ( ) ) , TQ _SLOT( slotPermanent ( ) ) ) ;
connect ( cacheUntil , TQ _SIGNAL( clicked ( ) ) , TQ _SLOT( slotUntil ( ) ) ) ;
connect ( untilDate , TQ _SIGNAL( leftClickedURL ( ) ) , TQ _SLOT( slotDatePick ( ) ) ) ;
whatstr = i18n ( " Select here to make the cache entry permanent. " ) ;
TQWhatsThis : : add ( cachePerm , whatstr ) ;
whatstr = i18n ( " Select here to make the cache entry temporary. " ) ;
@ -691,7 +691,7 @@ TQString whatstr;
policyPrompt = new TQRadioButton ( i18n ( " &Prompt " ) , policyGroup ) ;
policyGroup - > setEnabled ( false ) ;
grid - > addMultiCellWidget ( policyGroup , 16 , 19 , 3 , 5 ) ;
connect ( policyGroup , TQ T _SIGNAL( clicked ( int ) ) , TQ T _SLOT( slotPolicyChanged ( int ) ) ) ;
connect ( policyGroup , TQ _SIGNAL( clicked ( int ) ) , TQ _SLOT( slotPolicyChanged ( int ) ) ) ;
whatstr = i18n ( " Select this to always accept this certificate. " ) ;
TQWhatsThis : : add ( policyAccept , whatstr ) ;
whatstr = i18n ( " Select this to always reject this certificate. " ) ;
@ -729,19 +729,19 @@ TQString whatstr;
caList - > addColumn ( i18n ( " Organization " ) ) ;
caList - > addColumn ( i18n ( " Organizational Unit " ) ) ;
caList - > addColumn ( i18n ( " Common Name " ) ) ;
connect ( caList , TQ T _SIGNAL( selectionChanged ( ) ) , TQ T _SLOT( slotCAItemChanged ( ) ) ) ;
connect ( caList , TQ _SIGNAL( selectionChanged ( ) ) , TQ _SLOT( slotCAItemChanged ( ) ) ) ;
caSSLImport = new TQPushButton ( i18n ( " I&mport... " ) , tabSSLCA ) ;
connect ( caSSLImport , TQ T _SIGNAL( clicked ( ) ) , TQ T _SLOT( slotCAImport ( ) ) ) ;
connect ( caSSLImport , TQ _SIGNAL( clicked ( ) ) , TQ _SLOT( slotCAImport ( ) ) ) ;
grid - > addWidget ( caSSLImport , 0 , 7 ) ;
caSSLRemove = new TQPushButton ( i18n ( " &Remove " ) , tabSSLCA ) ;
connect ( caSSLRemove , TQ T _SIGNAL( clicked ( ) ) , TQ T _SLOT( slotCARemove ( ) ) ) ;
connect ( caSSLRemove , TQ _SIGNAL( clicked ( ) ) , TQ _SLOT( slotCARemove ( ) ) ) ;
grid - > addWidget ( caSSLRemove , 1 , 7 ) ;
caSSLRemove - > setEnabled ( false ) ;
caSSLRestore = new TQPushButton ( i18n ( " Res&tore " ) , tabSSLCA ) ;
connect ( caSSLRestore , TQ T _SIGNAL( clicked ( ) ) , TQ T _SLOT( slotCARestore ( ) ) ) ;
connect ( caSSLRestore , TQ _SIGNAL( clicked ( ) ) , TQ _SLOT( slotCARestore ( ) ) ) ;
grid - > addWidget ( caSSLRestore , 2 , 7 ) ;
caSubject = KSSLInfoDlg : : certInfoWidget ( tabSSLCA , TQString ( TQString ( ) ) ) ;
@ -754,11 +754,11 @@ TQString whatstr;
caEmail = new TQCheckBox ( i18n ( " Accept for email signing " ) , tabSSLCA ) ;
caCode = new TQCheckBox ( i18n ( " Accept for code signing " ) , tabSSLCA ) ;
grid - > addMultiCellWidget ( caSite , 7 , 7 , 0 , 3 ) ;
connect ( caSite , TQ T _SIGNAL( clicked ( ) ) , TQ T _SLOT( slotCAChecked ( ) ) ) ;
connect ( caSite , TQ _SIGNAL( clicked ( ) ) , TQ _SLOT( slotCAChecked ( ) ) ) ;
grid - > addMultiCellWidget ( caEmail , 8 , 8 , 0 , 3 ) ;
connect ( caEmail , TQ T _SIGNAL( clicked ( ) ) , TQ T _SLOT( slotCAChecked ( ) ) ) ;
connect ( caEmail , TQ _SIGNAL( clicked ( ) ) , TQ _SLOT( slotCAChecked ( ) ) ) ;
grid - > addMultiCellWidget ( caCode , 9 , 9 , 0 , 3 ) ;
connect ( caCode , TQ T _SIGNAL( clicked ( ) ) , TQ T _SLOT( slotCAChecked ( ) ) ) ;
connect ( caCode , TQ _SIGNAL( clicked ( ) ) , TQ _SLOT( slotCAChecked ( ) ) ) ;
caSite - > setEnabled ( false ) ;
caEmail - > setEnabled ( false ) ;
caCode - > setEnabled ( false ) ;
@ -785,11 +785,11 @@ TQString whatstr;
# ifdef HAVE_SSL
grid = new TQGridLayout ( tabSSLCOpts , 9 , 4 , KDialog : : marginHint ( ) , KDialog : : spacingHint ( ) ) ;
mWarnSelfSigned = new TQCheckBox ( i18n ( " Warn on &self-signed certificates or unknown CA's " ) , tabSSLCOpts ) ;
connect ( mWarnSelfSigned , TQ T _SIGNAL( clicked ( ) ) , TQ T _SLOT( configChanged ( ) ) ) ;
connect ( mWarnSelfSigned , TQ _SIGNAL( clicked ( ) ) , TQ _SLOT( configChanged ( ) ) ) ;
mWarnExpired = new TQCheckBox ( i18n ( " Warn on &expired certificates " ) , tabSSLCOpts ) ;
connect ( mWarnExpired , TQ T _SIGNAL( clicked ( ) ) , TQ T _SLOT( configChanged ( ) ) ) ;
connect ( mWarnExpired , TQ _SIGNAL( clicked ( ) ) , TQ _SLOT( configChanged ( ) ) ) ;
mWarnRevoked = new TQCheckBox ( i18n ( " Warn on re&voked certificates " ) , tabSSLCOpts ) ;
connect ( mWarnRevoked , TQ T _SIGNAL( clicked ( ) ) , TQ T _SLOT( configChanged ( ) ) ) ;
connect ( mWarnRevoked , TQ _SIGNAL( clicked ( ) ) , TQ _SLOT( configChanged ( ) ) ) ;
grid - > addMultiCellWidget ( mWarnSelfSigned , 0 , 0 , 0 , 3 ) ;
grid - > addMultiCellWidget ( mWarnExpired , 1 , 1 , 0 , 3 ) ;
grid - > addMultiCellWidget ( mWarnRevoked , 2 , 2 , 0 , 3 ) ;
@ -807,15 +807,15 @@ TQString whatstr;
grid - > addMultiCellWidget ( macBox , 5 , 8 , 0 , 2 ) ;
macAdd = new TQPushButton ( i18n ( " &Add " ) , tabSSLCOpts ) ;
//connect(macAdd, TQ T _SIGNAL(), TQT _SLOT());
//connect(macAdd, TQ _SIGNAL(), TQ_SLOT());
grid - > addWidget ( macAdd , 4 , 3 ) ;
macRemove = new TQPushButton ( i18n ( " &Remove " ) , tabSSLCOpts ) ;
//connect(macRemove, TQ T _SIGNAL(), TQT _SLOT());
//connect(macRemove, TQ _SIGNAL(), TQ_SLOT());
grid - > addWidget ( macRemove , 5 , 3 ) ;
macClear = new KPushButton ( KGuiItem : : clear ( ) , tabSSLCOpts ) ;
//connect(macAdd, TQ T _SIGNAL(), TQT _SLOT());
//connect(macAdd, TQ _SIGNAL(), TQ_SLOT());
grid - > addWidget ( macClear , 6 , 3 ) ;
# else