Don't set parent here.

wilder-work
Montel Laurent 13 years ago
parent 83d5c6bb1b
commit 63c6a0c2d0
  1. 6
      kmkernel.cpp

@ -1664,7 +1664,8 @@ void KMKernel::transportRemoved(int id, const QString & name)
QString information = i18np( "This identity has been changed to use the default transport:",
"These %1 identities have been changed to use the default transport:",
changedIdents.count() );
KMessageBox::informationList( mWin, information, changedIdents );
//Don't set parent otherwise we will swith to current KMail and we configure it. So not good
KMessageBox::informationList( 0, information, changedIdents );
im->commit();
}
}
@ -1688,7 +1689,8 @@ void KMKernel::transportRenamed(int id, const QString & oldName, const QString &
i18np( "This identity has been changed to use the modified transport:",
"These %1 identities have been changed to use the modified transport:",
changedIdents.count() );
KMessageBox::informationList( mWin, information, changedIdents );
//Don't set parent otherwise we will swith to current KMail and we configure it. So not good
KMessageBox::informationList( 0, information, changedIdents );
im->commit();
}
}

Loading…
Cancel
Save