From: Vadim Zeitlin Date: Tue, 10 Apr 2007 01:29:16 +0000 (+0000) Subject: compilation fix after last commit X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/346d8899f312739ffe0cca64bb0538ecdb34dcdf compilation fix after last commit git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45373 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/univ/winuniv.cpp b/src/univ/winuniv.cpp index c5f8c6e654..6a03329594 100644 --- a/src/univ/winuniv.cpp +++ b/src/univ/winuniv.cpp @@ -1416,10 +1416,10 @@ void wxWindow::OnChar(wxKeyEvent& event) if ( !event.HasModifiers() && event.GetKeyCode() == WXK_RETURN ) { wxTopLevelWindow * - tlw = wxDynamicCast(wxTopLevelWindow *, wxGetTopLevelParent()); + tlw = wxDynamicCast(wxGetTopLevelParent(this), wxTopLevelWindow); if ( tlw ) { - wxButton *btn = wxDynamicCast(wxButton *, tlw->GetDefaultItem()); + wxButton *btn = wxDynamicCast(tlw->GetDefaultItem(), wxButton); if ( btn ) { wxCommandEvent evt(wxEVT_COMMAND_BUTTON_CLICKED, btn->GetId());