From 82d492f14504c4c9f29dc8c54ffce1dd2c2f5deb Mon Sep 17 00:00:00 2001 From: Jamie Gadd Date: Thu, 30 Mar 2006 23:01:55 +0000 Subject: [PATCH] Include compatibility guard for int GetItemSpacing( bool isSmall ) in implementation file also. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38456 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/listctrl.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/generic/listctrl.cpp b/src/generic/listctrl.cpp index 6ba376db61..3a901214d5 100644 --- a/src/generic/listctrl.cpp +++ b/src/generic/listctrl.cpp @@ -5059,10 +5059,12 @@ wxSize wxGenericListCtrl::GetItemSpacing() const return wxSize(spacing, spacing); } +#if WXWIN_COMPATIBILITY_2_6 int wxGenericListCtrl::GetItemSpacing( bool isSmall ) const { return m_mainWin->GetItemSpacing( isSmall ); } +#endif // WXWIN_COMPATIBILITY_2_6 void wxGenericListCtrl::SetItemTextColour( long item, const wxColour &col ) {