projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
wxDateTime progress: DST compuation, weekday computation, day-in-year and week
[wxWidgets.git]
/
src
/
stubs
/
notebook.cpp
diff --git
a/src/stubs/notebook.cpp
b/src/stubs/notebook.cpp
index 312dd0f3d3ae8a62ddf0ac466bb04cd20a4c5aa9..9ac9c0bf4a1a244b494a44e9a1b1ddc9b20b3243 100644
(file)
--- a/
src/stubs/notebook.cpp
+++ b/
src/stubs/notebook.cpp
@@
-36,7
+36,6
@@
// event table
// ----------------------------------------------------------------------------
// event table
// ----------------------------------------------------------------------------
-#if !USE_SHARED_LIBRARIES
BEGIN_EVENT_TABLE(wxNotebook, wxControl)
EVT_NOTEBOOK_PAGE_CHANGED(-1, wxNotebook::OnSelChange)
BEGIN_EVENT_TABLE(wxNotebook, wxControl)
EVT_NOTEBOOK_PAGE_CHANGED(-1, wxNotebook::OnSelChange)
@@
-47,7
+46,6
@@
END_EVENT_TABLE()
IMPLEMENT_DYNAMIC_CLASS(wxNotebook, wxControl)
IMPLEMENT_DYNAMIC_CLASS(wxNotebookEvent, wxCommandEvent)
IMPLEMENT_DYNAMIC_CLASS(wxNotebook, wxControl)
IMPLEMENT_DYNAMIC_CLASS(wxNotebookEvent, wxCommandEvent)
-#endif
// ============================================================================
// implementation
// ============================================================================
// implementation
@@
-375,3
+373,8
@@
void wxNotebook::ChangePage(int nOldSel, int nSel)
m_nSelection = nSel;
}
m_nSelection = nSel;
}
+void wxNotebook::SetTabSize(const wxSize& sz)
+{
+ // TODO
+}
+