kainhofer said: I also just saw that the checkboxes in kmails "Composing" tab of the

security page are not connected to the modify signal, so the apply button is not
enabled if you change them.
-> fixed.

svn path=/trunk/kdepim/; revision=331906
wilder-work
David Faure 22 years ago
parent 5150e03df8
commit 4b1fafd7bb
  1. 7
      configuredialog.cpp

@ -3485,6 +3485,13 @@ SecurityPageComposerCryptoTab::SecurityPageComposerCryptoTab( QWidget * parent,
QVBoxLayout* vlay = new QVBoxLayout( this, 0, 0 );
mWidget = new ComposerCryptoConfiguration( this );
connect( mWidget->mAutoSignature, SIGNAL( toggled(bool) ), this, SLOT( slotEmitChanged() ) );
connect( mWidget->mEncToSelf, SIGNAL( toggled(bool) ), this, SLOT( slotEmitChanged() ) );
connect( mWidget->mShowEncryptionResult, SIGNAL( toggled(bool) ), this, SLOT( slotEmitChanged() ) );
connect( mWidget->mShowKeyApprovalDlg, SIGNAL( toggled(bool) ), this, SLOT( slotEmitChanged() ) );
connect( mWidget->mAutoEncrypt, SIGNAL( toggled(bool) ), this, SLOT( slotEmitChanged() ) );
connect( mWidget->mNeverEncryptWhenSavingInDrafts, SIGNAL( toggled(bool) ), this, SLOT( slotEmitChanged() ) );
connect( mWidget->mStoreEncrypted, SIGNAL( toggled(bool) ), this, SLOT( slotEmitChanged() ) );
vlay->addWidget( mWidget );
}

Loading…
Cancel
Save