compilation fix after last commit
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45373 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
		@@ -1416,10 +1416,10 @@ void wxWindow::OnChar(wxKeyEvent& event)
 | 
				
			|||||||
    if ( !event.HasModifiers() && event.GetKeyCode() == WXK_RETURN )
 | 
					    if ( !event.HasModifiers() && event.GetKeyCode() == WXK_RETURN )
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        wxTopLevelWindow *
 | 
					        wxTopLevelWindow *
 | 
				
			||||||
            tlw = wxDynamicCast(wxTopLevelWindow *, wxGetTopLevelParent());
 | 
					            tlw = wxDynamicCast(wxGetTopLevelParent(this), wxTopLevelWindow);
 | 
				
			||||||
        if ( tlw )
 | 
					        if ( tlw )
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            wxButton *btn = wxDynamicCast(wxButton *, tlw->GetDefaultItem());
 | 
					            wxButton *btn = wxDynamicCast(tlw->GetDefaultItem(), wxButton);
 | 
				
			||||||
            if ( btn )
 | 
					            if ( btn )
 | 
				
			||||||
            {
 | 
					            {
 | 
				
			||||||
                wxCommandEvent evt(wxEVT_COMMAND_BUTTON_CLICKED, btn->GetId());
 | 
					                wxCommandEvent evt(wxEVT_COMMAND_BUTTON_CLICKED, btn->GetId());
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user