CVS commit by antlarr: Frank Pieczynski made a patch to remove the message box that appears when the file saving is finished, Andreas Schlapbach and me, both agreed to remove that message box, but just before commiting I thought that removing it would cause another problem: there wouldn't be any way to "actively" tell the user that it has finished and users would have to poll the dialog each now and then, so I've replaced the message box with a passive popup, which doesn't get in the way as the old message box did, but at the same time, "actively" tells the user that it finished. I hope it's ok also to you, Andreas and Frank, if you see any problem with it, please tell me. CCMAIL: pieczy@web.de, schlpbch@iam.unibe.ch M +2 -2 archivedialog.cpp 1.15 --- kdeaddons/konq-plugins/webarchiver/archivedialog.cpp #1.14:1.15 @@ -29,4 +29,5 @@ #include #include +#include #include #include @@ -153,6 +154,5 @@ void ArchiveDialog::setSavingState() m_tarBall->close(); - KMessageBox::information(0L, i18n( "Archiving webpage completed." ), - QString::null, QString::null, false); + KPassivePopup::message( m_url.prettyURL() , i18n( "Archiving webpage completed." ), this ); enableButtonOK(true);