git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29700
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
switch ( m_radioOrient->GetSelection() )
{
default:
switch ( m_radioOrient->GetSelection() )
{
default:
- wxFAIL_MSG( _T("unknown notebok orientation") );
+ wxFAIL_MSG( _T("unknown notebook orientation") );
// fall through
case Orient_Top:
// fall through
case Orient_Top:
- wxNotebook *notebook = m_notebook;
+ wxNotebook *old_note = m_notebook;
m_notebook = new wxNotebook(this, NotebookPage_Notebook,
wxDefaultPosition, wxDefaultSize,
m_notebook = new wxNotebook(this, NotebookPage_Notebook,
wxDefaultPosition, wxDefaultSize,
- const int sel = notebook->GetSelection();
+ const int sel = old_note->GetSelection();
- const int count = notebook->GetPageCount();
+ const int count = old_note->GetPageCount();
// recreate the pages
for ( int n = 0; n < count; n++ )
{
m_notebook->AddPage(CreateNewPage(),
// recreate the pages
for ( int n = 0; n < count; n++ )
{
m_notebook->AddPage(CreateNewPage(),
- notebook->GetPageText(n),
+ old_note->GetPageText(n),
- notebook->GetPageImage(n));
+ m_chkImages->GetValue() ?
+ GetIconIndex() : -1);
- m_sizerNotebook->Detach( notebook );
- delete notebook;
+ m_sizerNotebook->Detach( old_note );
+ delete old_note;
// restore selection
if ( sel != -1 )
// restore selection
if ( sel != -1 )