fixed typo in GetSelEnd() which made that the function didn't work (bug 1219791)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34699 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -13,6 +13,7 @@ All:
|
|||||||
wxMSW:
|
wxMSW:
|
||||||
|
|
||||||
- Fixed multiline tooltips handling.
|
- Fixed multiline tooltips handling.
|
||||||
|
- Fixed wxSlider::GetSelEnd() (Atilim Cetin)
|
||||||
|
|
||||||
wxUniv:
|
wxUniv:
|
||||||
|
|
||||||
|
@@ -660,7 +660,7 @@ int wxSlider::GetLineSize() const
|
|||||||
|
|
||||||
int wxSlider::GetSelEnd() const
|
int wxSlider::GetSelEnd() const
|
||||||
{
|
{
|
||||||
return (int)::SendMessage(GetHwnd(), TBM_SETSELEND, 0, 0);
|
return (int)::SendMessage(GetHwnd(), TBM_GETSELEND, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxSlider::GetSelStart() const
|
int wxSlider::GetSelStart() const
|
||||||
|
Reference in New Issue
Block a user