X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/793f619f7f0e5b1eaba6a9e3f731462c1893b7f7..61ef57fc5ec21c6561ec4a1f6b68bcc8e7a01b29:/src/generic/notebook.cpp diff --git a/src/generic/notebook.cpp b/src/generic/notebook.cpp index 10b0ce683e..90782f4545 100644 --- a/src/generic/notebook.cpp +++ b/src/generic/notebook.cpp @@ -601,6 +601,11 @@ wxRect wxNotebook::GetAvailableClientSize() return rect; } +void wxNotebook::SetTabSize(const wxSize& sz) +{ + // TODO +} + /* * wxNotebookTabView */ @@ -626,7 +631,12 @@ void wxNotebookTabView::OnTabActivate(int activateId, int deactivateId) if (!m_notebook) return; +// Because of name truncation! +#if defined(__BORLANDC__) && defined(__WIN16__) + wxNotebookEvent event(wxEVT_COMMAND_NB_PAGE_CHANGED, m_notebook->GetId()); +#else wxNotebookEvent event(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, m_notebook->GetId()); +#endif // Translate from wxTabView's ids (which aren't position-dependent) // to wxNotebook's (which are).