Use wx_static_cast instead of static_cast.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39322 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Michael Wetherell 2006-05-24 22:55:28 +00:00
parent bd88c1fa96
commit 98b9b5eaf3

View File

@ -106,7 +106,7 @@ private:
static int GetPageId(wxTabView *tabview, wxNotebookPage *page)
{
return static_cast<wxNotebookTabView*>(tabview)->GetId(page);
return wx_static_cast(wxNotebookTabView*, tabview)->GetId(page);
}
// ----------------------------------------------------------------------------