(Fixes bug [
1769662 ] wxAuiNotebook::InsertPage() does not change page parent)
Applied patch [
1777713 ] wxAuiNotebook::InsertPage() - properly update m_curpage
(Fixes bug [
1769655 ] wxAuiNotebook::InsertPage() leads to inconsistent state)
From Andrey Yazhuk.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48249
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
bool select,
const wxBitmap& bitmap)
{
bool select,
const wxBitmap& bitmap)
{
+ page->Reparent(this);
+
wxAuiNotebookPage info;
info.window = page;
info.caption = caption;
wxAuiNotebookPage info;
info.window = page;
info.caption = caption;
DoSizing();
active_tabctrl->DoShowHide();
DoSizing();
active_tabctrl->DoShowHide();
+ // adjust selected index
+ if(m_curpage >= (int) page_idx)
+ m_curpage++;
+
if (select)
{
SetSelectionToWindow(page);
if (select)
{
SetSelectionToWindow(page);