From: Vadim Zeitlin Date: Wed, 8 Sep 2004 09:53:46 +0000 (+0000) Subject: added wxTopLevelWindow::RequestUserAttention(); documented it and implemented it... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/9b59c95b38e05afd7e4abed239ae45d5fcc28645?ds=inline added wxTopLevelWindow::RequestUserAttention(); documented it and implemented it for MSW git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29048 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/toplvcmn.cpp b/src/common/toplvcmn.cpp index 3abc4cb2da..39e785a01c 100644 --- a/src/common/toplvcmn.cpp +++ b/src/common/toplvcmn.cpp @@ -265,4 +265,9 @@ void wxTopLevelWindowBase::DoUpdateWindowUI(wxUpdateUIEvent& event) } } -// vi:sts=4:sw=4:et +void wxTopLevelWindowBase::RequestUserAttention(int flags) +{ + // it's probably better than do nothing, isn't it? + Raise(); +} +