renamed scrolwin file - no other way to make wxGTK/Univ compile

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10802 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2001-07-03 18:14:22 +00:00
parent 7756141b6e
commit 3a8c693aea
6 changed files with 57 additions and 19 deletions

View File

@@ -3142,7 +3142,7 @@ void wxListMainWindow::SortItems( wxListCtrlCompare fn, long data )
void wxListMainWindow::OnScroll(wxScrollWinEvent& event)
{
// FIXME
#ifdef __WXGTK__
#if defined(__WXGTK__) && !defined(__WXUNIVERSAL__)
wxScrolledWindow::OnScroll(event);
#else
HandleOnScroll( event );
@@ -3898,7 +3898,11 @@ wxColour wxListCtrl::GetForegroundColour() const
bool wxListCtrl::DoPopupMenu( wxMenu *menu, int x, int y )
{
#if wxUSE_MENUS
return m_mainWin->PopupMenu( menu, x, y );
#else
return FALSE;
#endif // wxUSE_MENUS
}
void wxListCtrl::SetFocus()