From 9b59c95b38e05afd7e4abed239ae45d5fcc28645 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 8 Sep 2004 09:53:46 +0000 Subject: [PATCH] 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 --- src/common/toplvcmn.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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(); +} + -- 2.50.0