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:
@@ -152,7 +152,7 @@ bool wxNotebook::Create(wxWindow *parent,
|
|||||||
|
|
||||||
if ( (style & wxBK_ALIGN_MASK) == wxBK_DEFAULT )
|
if ( (style & wxBK_ALIGN_MASK) == wxBK_DEFAULT )
|
||||||
style |= wxBK_TOP;
|
style |= wxBK_TOP;
|
||||||
|
|
||||||
m_windowId = id == wxID_ANY ? NewControlId() : id;
|
m_windowId = id == wxID_ANY ? NewControlId() : id;
|
||||||
|
|
||||||
if (!wxControl::Create(parent, id, pos, size, style|wxNO_BORDER, wxDefaultValidator, name))
|
if (!wxControl::Create(parent, id, pos, size, style|wxNO_BORDER, wxDefaultValidator, name))
|
||||||
@@ -192,6 +192,12 @@ int wxNotebook::SetSelection(size_t nPage)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int wxNotebook::ChangeSelection(size_t nPage)
|
||||||
|
{
|
||||||
|
// FIXME: currently it does generate events too
|
||||||
|
return SetSelection(nPage);
|
||||||
|
}
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
void wxNotebook::AdvanceSelection(bool bForward)
|
void wxNotebook::AdvanceSelection(bool bForward)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user