define ChangeSelection() (fixes wxMotif build)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41766 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
e0d14de1ed
commit
6e27179817
@ -152,7 +152,7 @@ bool wxNotebook::Create(wxWindow *parent,
|
||||
|
||||
if ( (style & wxBK_ALIGN_MASK) == wxBK_DEFAULT )
|
||||
style |= wxBK_TOP;
|
||||
|
||||
|
||||
m_windowId = id == wxID_ANY ? NewControlId() : id;
|
||||
|
||||
if (!wxControl::Create(parent, id, pos, size, style|wxNO_BORDER, wxDefaultValidator, name))
|
||||
@ -192,6 +192,12 @@ int wxNotebook::SetSelection(size_t nPage)
|
||||
return 0;
|
||||
}
|
||||
|
||||
int wxNotebook::ChangeSelection(size_t nPage)
|
||||
{
|
||||
// FIXME: currently it does generate events too
|
||||
return SetSelection(nPage);
|
||||
}
|
||||
|
||||
#if 0
|
||||
void wxNotebook::AdvanceSelection(bool bForward)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user