X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2aee749cb188d42282f54043a9723778f1cf1a05..96b2cbe8b39292fed91654ff0d1f4b1c16561acb:/src/msw/nativewin.cpp diff --git a/src/msw/nativewin.cpp b/src/msw/nativewin.cpp index 3ac00548a7..6b3649b842 100644 --- a/src/msw/nativewin.cpp +++ b/src/msw/nativewin.cpp @@ -56,7 +56,23 @@ bool wxNativeContainerWindow::Create(wxNativeContainerWindowHandle hwnd) void wxNativeContainerWindow::OnNativeDestroyed() { - // currently this is not called so nothing to do here + // don't use Close() or even Destroy() here, we really don't want to keep + // an object using a no more existing HWND around for longer than necessary + delete this; +} + +WXLRESULT wxNativeContainerWindow::MSWWindowProc(WXUINT nMsg, + WXWPARAM wParam, + WXLPARAM lParam) +{ + if ( nMsg == WM_DESTROY ) + { + OnNativeDestroyed(); + + return 0; + } + + return wxTopLevelWindow::MSWWindowProc(nMsg, wParam, lParam); } wxNativeContainerWindow::~wxNativeContainerWindow()