projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fix spelling in utils/screenshotgen sources.
[wxWidgets.git]
/
src
/
osx
/
dialog_osx.cpp
diff --git
a/src/osx/dialog_osx.cpp
b/src/osx/dialog_osx.cpp
index 835afaaa240b78332980de261ad2b97915a12ab1..8bb543ff756dce463b92d38b16a911e36adbeec4 100644
(file)
--- a/
src/osx/dialog_osx.cpp
+++ b/
src/osx/dialog_osx.cpp
@@
-13,6
+13,7
@@
#include "wx/dialog.h"
#include "wx/evtloop.h"
#include "wx/dialog.h"
#include "wx/evtloop.h"
+#include "wx/testing.h"
#ifndef WX_PRECOMP
#include "wx/app.h"
#ifndef WX_PRECOMP
#include "wx/app.h"
@@
-115,7
+116,12
@@
bool wxDialog::Show(bool show)
if ( !show )
{
if ( !show )
{
- switch( m_modality )
+ const int modalityOrig = m_modality;
+
+ // complete the 'hiding' before we send the event
+ m_modality = wxDIALOG_MODALITY_NONE;
+
+ switch ( modalityOrig )
{
case wxDIALOG_MODALITY_WINDOW_MODAL:
EndWindowModal(); // OS X implementation method for cleanup
{
case wxDIALOG_MODALITY_WINDOW_MODAL:
EndWindowModal(); // OS X implementation method for cleanup
@@
-124,7
+130,6
@@
bool wxDialog::Show(bool show)
default:
break;
}
default:
break;
}
- m_modality = wxDIALOG_MODALITY_NONE;
}
return true;
}
return true;
@@
-133,6
+138,8
@@
bool wxDialog::Show(bool show)
// Replacement for Show(true) for modal dialogs - returns return code
int wxDialog::ShowModal()
{
// Replacement for Show(true) for modal dialogs - returns return code
int wxDialog::ShowModal()
{
+ WX_TESTING_SHOW_MODAL_HOOK();
+
m_modality = wxDIALOG_MODALITY_APP_MODAL;
Show();
m_modality = wxDIALOG_MODALITY_APP_MODAL;
Show();