X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/923f4e79a20c1e6edf8d0a3d37361de20abb7bd4..b41b09e28513f8b30065914eeb1051a0a32e6e1b:/samples/widgets/notebook.cpp diff --git a/samples/widgets/notebook.cpp b/samples/widgets/notebook.cpp index 2d8c217cf7..44279c70d1 100644 --- a/samples/widgets/notebook.cpp +++ b/samples/widgets/notebook.cpp @@ -86,7 +86,7 @@ enum Orient class NotebookWidgetsPage : public WidgetsPage { public: - NotebookWidgetsPage(wxBookCtrl *book, wxImageList *imaglist); + NotebookWidgetsPage(wxBookCtrlBase *book, wxImageList *imaglist); virtual ~NotebookWidgetsPage(); virtual wxControl *GetWidget() const { return m_notebook; } @@ -192,7 +192,7 @@ END_EVENT_TABLE() IMPLEMENT_WIDGETS_PAGE(NotebookWidgetsPage, _T("Notebook")); -NotebookWidgetsPage::NotebookWidgetsPage(wxBookCtrl *book, +NotebookWidgetsPage::NotebookWidgetsPage(wxBookCtrlBase *book, wxImageList *imaglist) : WidgetsPage(book) { @@ -355,19 +355,19 @@ void NotebookWidgetsPage::CreateNotebook() // fall through case Orient_Top: - flags = wxNB_TOP; + flags = wxBK_TOP; break; case Orient_Bottom: - flags = wxNB_BOTTOM; + flags = wxBK_BOTTOM; break; case Orient_Left: - flags = wxNB_LEFT; + flags = wxBK_LEFT; break; case Orient_Right: - flags = wxNB_RIGHT; + flags = wxBK_RIGHT; break; } @@ -506,7 +506,7 @@ void NotebookWidgetsPage::OnUpdateUIRemoveButton(wxUpdateUIEvent& event) void NotebookWidgetsPage::OnUpdateUIResetButton(wxUpdateUIEvent& event) { event.Enable( !m_chkImages->GetValue() || - m_radioOrient->GetSelection() != wxNB_TOP ); + m_radioOrient->GetSelection() != wxBK_TOP ); } void NotebookWidgetsPage::OnUpdateUINumPagesText(wxUpdateUIEvent& event)