summaryrefslogtreecommitdiffstats
path: root/kmail/kmtransport.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-02-16 20:17:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-02-16 20:17:18 +0000
commitf4fae92b6768541e2952173c3d4b09040f95bf7e (patch)
treed8c5d93232235cd635f3310b4d95490df181ba2d /kmail/kmtransport.cpp
parent125c0a08265b75a133644d3b55f47e37c919f45d (diff)
downloadtdepim-f4fae92b6768541e2952173c3d4b09040f95bf7e.tar.gz
tdepim-f4fae92b6768541e2952173c3d4b09040f95bf7e.zip
Moved kpilot from kdepim to applications, as the core Trinity libraries should not contain hardware-dependent software
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1221127 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmail/kmtransport.cpp')
-rw-r--r--kmail/kmtransport.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kmail/kmtransport.cpp b/kmail/kmtransport.cpp
index a5bf6b9c..dce1ccf0 100644
--- a/kmail/kmtransport.cpp
+++ b/kmail/kmtransport.cpp
@@ -291,7 +291,7 @@ KMTransportDialog::KMTransportDialog( const TQString & caption,
{
assert(transportInfo != 0);
- if( transportInfo->type == TQString::fromLatin1("sendmail") )
+ if( transportInfo->type == TQString::tqfromLatin1("sendmail") )
{
makeSendmailPage();
} else {
@@ -479,7 +479,7 @@ void KMTransportDialog::makeSmtpPage()
"a custom hostname when identifying itself "
"to the mail server."
"<p>This is useful when your system's hostname "
- "may not be set correctly or to mask your "
+ "may not be set correctly or to tqmask your "
"system's true hostname."));
mSmtp.localHostnameLabel = new TQLabel( i18n("Hos&tname:"), page1 );
@@ -522,7 +522,7 @@ void KMTransportDialog::makeSmtpPage()
mSmtp.authDigestMd5 = new TQRadioButton( i18n("&DIGEST-MD5"), mSmtp.authGroup );
mSmtp.authNTLM = new TQRadioButton( i18n("&NTLM"), mSmtp.authGroup );
mSmtp.authGSSAPI = new TQRadioButton( i18n("&GSSAPI"), mSmtp.authGroup );
- if ( KProtocolInfo::capabilities("smtp").contains("SASL") == 0 ) {
+ if ( KProtocolInfo::capabilities("smtp").tqcontains("SASL") == 0 ) {
mSmtp.authNTLM->hide();
mSmtp.authGSSAPI->hide();
}