projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Standardize on using "Added" instead of "Add" in the change log.
[wxWidgets.git]
/
src
/
generic
/
tipwin.cpp
diff --git
a/src/generic/tipwin.cpp
b/src/generic/tipwin.cpp
index b50fb47a9647790dc36e8a521bb159da1e5943fc..ede0ae3913d9ab9bdfb4652fcd18fd917c651000 100644
(file)
--- a/
src/generic/tipwin.cpp
+++ b/
src/generic/tipwin.cpp
@@
-226,7
+226,11
@@
void wxTipWindow::Close()
if ( m_view->HasCapture() )
m_view->ReleaseMouse();
#endif
- Destroy();
+ // Under OS X we get destroyed because of wxEVT_KILL_FOCUS generated by
+ // Show(false).
+ #ifndef __WXOSX__
+ Destroy();
+ #endif
#else
wxFrame::Close();
#endif