projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0fcce6b
)
Include compatibility guard for int GetItemSpacing( bool isSmall ) in implementation...
author
Jamie Gadd
<jrgadd2@cs.latrobe.edu.au>
Thu, 30 Mar 2006 23:01:55 +0000
(23:01 +0000)
committer
Jamie Gadd
<jrgadd2@cs.latrobe.edu.au>
Thu, 30 Mar 2006 23:01:55 +0000
(23:01 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38456
c3d73ce0
-8a6f-49c7-b76d-
6d57e0e08775
src/generic/listctrl.cpp
patch
|
blob
|
blame
|
history
diff --git
a/src/generic/listctrl.cpp
b/src/generic/listctrl.cpp
index 6ba376db61b58ddfffbdd2b0873b8fcf035e8f6b..3a901214d57d379aa6b90509f696b930e6747f0c 100644
(file)
--- 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 )
{