added wxWS_EX_TRANSIENT, added code for handling it and fixed wxLogGeneric

to avoid crashes related to creating the log dialog as child of a window which
is destroyed before it is


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12781 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2001-11-30 23:40:12 +00:00
parent ff69a290d6
commit 39cc7a0bae
7 changed files with 34 additions and 11 deletions

View File

@@ -245,9 +245,6 @@ void wxLogGui::Flush()
wxString title;
title.Printf(titleFormat, appName.c_str());
// this is the best we can do here
wxWindow *parent = wxTheApp->GetTopWindow();
size_t nMsgCount = m_aMessages.Count();
// avoid showing other log dialogs until we're done with the dialog we're
@@ -263,7 +260,7 @@ void wxLogGui::Flush()
{
#if wxUSE_LOG_DIALOG
wxLogDialog dlg(parent,
wxLogDialog dlg(NULL,
m_aMessages, m_aSeverity, m_aTimes,
title, style);
@@ -295,7 +292,7 @@ void wxLogGui::Flush()
// situation without it
if ( !!str )
{
wxMessageBox(str, title, wxOK | style, parent);
wxMessageBox(str, title, wxOK | style);
// no undisplayed messages whatsoever
Clear();