X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/5da2c444ef6bfe006e45c15216911dfde4540fe0..f32e5dc5caba8e2b34d6e806c9b3067086bfb73a:/src/mac/window.cpp diff --git a/src/mac/window.cpp b/src/mac/window.cpp index 95e1077a9b..d443d4bfa8 100644 --- a/src/mac/window.cpp +++ b/src/mac/window.cpp @@ -1515,13 +1515,19 @@ void wxWindow::OnIdle(wxIdleEvent& event) // Raise the window to the top of the Z order void wxWindow::Raise() { - // TODO + if ( m_macWindowData ) + { + UMABringToFront( m_macWindowData->m_macWindow ) ; + } } // Lower the window to the bottom of the Z order void wxWindow::Lower() { - // TODO + if ( m_macWindowData ) + { + UMASendBehind( m_macWindowData->m_macWindow , NULL ) ; + } } void wxWindow::DoSetClientSize(int width, int height)