Return the value set, even if we aren't currently using the value in the implementation. This keeps unit tests from asserting.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@49543 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Kevin Ollivier
2007-10-31 01:57:13 +00:00
parent 942d424dbe
commit 0f9706b3c8

View File

@@ -252,7 +252,7 @@ void wxSlider::SetLineSize(int lineSize)
int wxSlider::GetLineSize() const
{
// TODO
return 0;
return m_lineSize;
}
int wxSlider::GetSelEnd() const