Fix warning in wxSimplebook::UpdateSelectedPage().

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_3_0_BRANCH@76590 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2014-05-21 07:40:50 +00:00
parent 8b0f7cb979
commit 419805785a

View File

@@ -139,7 +139,7 @@ public:
protected:
virtual void UpdateSelectedPage(size_t newsel)
{
m_selection = newsel;
m_selection = (int)newsel;
}
virtual wxBookCtrlEvent* CreatePageChangingEvent() const