// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
-#ifdef __VMS
-#define XtDisplay XTDISPLAY
-#define XtWindow XTWINDOW
-#define XtParent XTPARENT
-#define XtScreen XTSCREEN
-#endif
-
#include "wx/dialog.h"
#ifndef WX_PRECOMP
{
m_isBeingDeleted = true;
+ // if the dialog is modal, this will end its event loop
+ Show(false);
+
delete m_eventLoop;
if (m_mainWidget)
if( !wxWindowBase::Show( show ) )
return false;
+ if ( !show && IsModal() )
+ EndModal(wxID_CANCEL);
+
m_isShown = show;
if (show)