Merge remote-tracking branch 'origin/master' into frameworks

Conflicts:
	pimcommon/CMakeLists.txt
wilder-work
Montel Laurent 12 years ago
commit 46b22e94d1
  1. 8
      editor/kmcomposewin.cpp

@ -412,9 +412,11 @@ KMComposeWin::KMComposeWin( const KMime::Message::Ptr &aMsg, bool lastSignState,
connect(mAttachmentMissing, SIGNAL(explicitClosedMissingAttachment()), this, SLOT(slotExplicitClosedMissingAttachment()));
v->addWidget(mAttachmentMissing);
m_verifyMissingAttachment = new QTimer(this);
m_verifyMissingAttachment->start(1000*5);
connect( m_verifyMissingAttachment, SIGNAL(timeout()), this, SLOT(slotVerifyMissingAttachmentTimeout()) );
if (GlobalSettings::self()->showForgottenAttachmentWarning()) {
m_verifyMissingAttachment = new QTimer(this);
m_verifyMissingAttachment->start(1000*5);
connect( m_verifyMissingAttachment, SIGNAL(timeout()), this, SLOT(slotVerifyMissingAttachmentTimeout()) );
}
connect( attachmentController, SIGNAL(fileAttached()), mAttachmentMissing, SLOT(slotFileAttached()) );
mExternalEditorWarning = new ExternalEditorWarning(this);

Loading…
Cancel
Save