author | zautrix <zautrix> | 2005-03-11 19:26:02 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-03-11 19:26:02 (UTC) |
commit | 1166a4797a91cedd5002a3513d5028c5e86016f0 (patch) (side-by-side diff) | |
tree | 8e7443bc887a15dcf3852abd36e6e61f2e6bddad /kmicromail/editaccounts.cpp | |
parent | 71462ba8ef1803787bba6793f1adb85987eb57df (diff) | |
download | kdepimpi-1166a4797a91cedd5002a3513d5028c5e86016f0.zip kdepimpi-1166a4797a91cedd5002a3513d5028c5e86016f0.tar.gz kdepimpi-1166a4797a91cedd5002a3513d5028c5e86016f0.tar.bz2 |
better kopi export
-rw-r--r-- | kmicromail/editaccounts.cpp | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/kmicromail/editaccounts.cpp b/kmicromail/editaccounts.cpp index 49049f6..2c0f2d8 100644 --- a/kmicromail/editaccounts.cpp +++ b/kmicromail/editaccounts.cpp @@ -348,4 +348,5 @@ void IMAPconfig::slotConnectionToggle( int index ) { portLine->setText( IMAP_SSL_PORT ); + CommandEdit->hide(); } else if ( index == 3 ) @@ -357,4 +358,5 @@ void IMAPconfig::slotConnectionToggle( int index ) { portLine->setText( IMAP_PORT ); + CommandEdit->hide(); } } @@ -429,4 +431,5 @@ void POP3config::slotConnectionToggle( int index ) { portLine->setText( POP3_SSL_PORT ); + CommandEdit->hide(); } else if ( index == 3 ) @@ -438,4 +441,5 @@ void POP3config::slotConnectionToggle( int index ) { portLine->setText( POP3_PORT ); + CommandEdit->hide(); } } @@ -521,10 +525,11 @@ void SMTPconfig::chooseSig() void SMTPconfig::slotConnectionToggle( int index ) { - // 2 is ssl connection - if ( index == 2 ) + // 3 is ssl connection + if ( index == 3 ) { portLine->setText( SMTP_SSL_PORT ); + CommandEdit->hide(); } - else if ( index == 3 ) + else if ( index == 4 ) { portLine->setText( SMTP_PORT ); @@ -534,4 +539,5 @@ void SMTPconfig::slotConnectionToggle( int index ) { portLine->setText( SMTP_PORT ); + CommandEdit->hide(); } } |