From 6e9324fc527ecbde9ebf19f107c20f4c1eba8f38 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 19 Nov 2004 16:49:15 +0000 Subject: [PATCH] removed duplicated code git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30629 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/notebook/notebook.cpp | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/samples/notebook/notebook.cpp b/samples/notebook/notebook.cpp index cfa1b98282..e15d1c5f46 100644 --- a/samples/notebook/notebook.cpp +++ b/samples/notebook/notebook.cpp @@ -390,19 +390,7 @@ int MyFrame::SelectFlag(int id, int nb, int lb, int chb) } \ else \ { \ - wxPanel *panel = CreateRadioButtonsPage(newBook); \ - newBook->AddPage( panel, RADIOBUTTONS_PAGE_NAME, false, GetIconIndex(newBook) ); \ - \ - panel = CreateVetoPage(newBook); \ - newBook->AddPage( panel, VETO_PAGE_NAME, false, GetIconIndex(newBook) ); \ - \ - panel = CreateBigButtonPage(newBook); \ - newBook->AddPage( panel, MAXIMIZED_BUTTON_PAGE_NAME, false, GetIconIndex(newBook) ); \ - \ - panel = CreateInsertPage(newBook); \ - newBook->InsertPage( 0, panel, I_WAS_INSERTED_PAGE_NAME, false, GetIconIndex(newBook) ); \ - \ - newBook->SetSelection(1); \ + CreateInitialPages(newBook); \ } \ \ m_sizerFrame->Insert(0, newBook, 5, wxEXPAND | wxALL, 4); \ -- 2.45.2