Fix warning in wxSimplebook::UpdateSelectedPage().
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76591 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
283636bf22
commit
9194902451
@ -139,7 +139,7 @@ public:
|
|||||||
protected:
|
protected:
|
||||||
virtual void UpdateSelectedPage(size_t newsel) wxOVERRIDE
|
virtual void UpdateSelectedPage(size_t newsel) wxOVERRIDE
|
||||||
{
|
{
|
||||||
m_selection = newsel;
|
m_selection = (int)newsel;
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual wxBookCtrlEvent* CreatePageChangingEvent() const wxOVERRIDE
|
virtual wxBookCtrlEvent* CreatePageChangingEvent() const wxOVERRIDE
|
||||||
|
Loading…
Reference in New Issue
Block a user