X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/895cc205971a8b28583ddb27161e4adf045114a4..8a16d7370e3cdc7d583a6f14ab11b3a1d27b73df:/src/generic/propdlg.cpp diff --git a/src/generic/propdlg.cpp b/src/generic/propdlg.cpp index 12dae96c82..d463f21ead 100644 --- a/src/generic/propdlg.cpp +++ b/src/generic/propdlg.cpp @@ -40,6 +40,9 @@ #if wxUSE_LISTBOOK #include "wx/listbook.h" #endif +#if wxUSE_TREEBOOK +#include "wx/treebook.h" +#endif #include "wx/generic/propdlg.h" #include "wx/sysopt.h" @@ -159,6 +162,10 @@ wxBookCtrlBase* wxPropertySheetDialog::CreateBookCtrl() #if wxUSE_LISTBOOK if (GetSheetStyle() & wxPROPSHEET_LISTBOOK) bookCtrl = new wxListbook(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, style ); +#endif +#if wxUSE_TREEBOOK + if (GetSheetStyle() & wxPROPSHEET_TREEBOOK) + bookCtrl = new wxTreebook(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, style ); #endif if (!bookCtrl) bookCtrl = new wxBookCtrl(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, style );