Removed hack in Toolbar that breaks UI updates under MSW.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15723 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling 2002-06-02 10:57:13 +00:00
parent 62b9253384
commit d3734d65e6

View File

@ -554,11 +554,15 @@ void wxToolBarBase::DoToolbarUpdates()
while (parent->GetParent())
parent = parent->GetParent();
#ifdef __WXMSW__
wxWindow* focusWin = wxFindFocusDescendant(parent);
#else
// This kind of #ifdef is a good way to annoy people. It breaks
// apps, but only on one platform and due to a hack in officially
// platform independent code. It took me hours to fix this. RR.
//
// #ifdef __WXMSW__
// wxWindow* focusWin = wxFindFocusDescendant(parent);
// #else
wxWindow* focusWin = (wxWindow*) NULL;
#endif
// #endif
wxEvtHandler* evtHandler = focusWin ? focusWin->GetEventHandler() : GetEventHandler() ;