From koffice-devel Sat May 24 19:19:53 2003 From: Ariya Hidayat Date: Sat, 24 May 2003 19:19:53 +0000 To: koffice-devel Subject: Re: patch : crash on "close all views" X-MARC-Message: https://marc.info/?l=koffice-devel&m=105380422401005 > Please put "diff -up" in your ~/.cvsrc ... The patch for koMainWindow.cc now looks like this: @@ -1283,21 +1283,21 @@ void KoMainWindow::slotCloseAllViews() { // Attention: Very touchy code... you know what you're doing? Goooood :) d->m_forQuit=true; if(queryClose()) { - hide(); - d->m_rootDoc->removeShell(this); // In case the document is embedded we close all open "extra-shells" if(d->m_rootDoc && d->m_rootDoc->isEmbedded()) { + hide(); + d->m_rootDoc->removeShell(this); QPtrListIterator it(d->m_rootDoc->shells()); while (it.current()) { it.current()->hide(); delete it.current(); // this updates the lists' current pointer and thus // the iterator (the shell dtor calls removeShell) + d->m_rootDoc=0; } } // not embedded -> destroy the document and all shells/views ;) else - delete d->m_rootDoc; - d->m_rootDoc=0; + setRootDocument( 0L ); close(); // close this window (and quit the app if necessary) } d->m_forQuit=false; _______________________________________________ koffice-devel mailing list koffice-devel@mail.kde.org http://mail.kde.org/mailman/listinfo/koffice-devel