compilation fix for genericTreeCtrl-only stuff

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11439 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2001-08-22 22:13:06 +00:00
parent eacb91fc20
commit a3e377a31f

View File

@@ -484,6 +484,7 @@ void MyFrame::OnToggleImages(wxCommandEvent& event)
void MyFrame::OnToggleButtons(wxCommandEvent& event) void MyFrame::OnToggleButtons(wxCommandEvent& event)
{ {
#if USE_GENERIC_TREECTRL || !defined(__WXMSW__)
if ( wxGetApp().ShowButtons() ) if ( wxGetApp().ShowButtons() )
{ {
m_treeCtrl->CreateButtonsImageList(-1); m_treeCtrl->CreateButtonsImageList(-1);
@@ -494,6 +495,7 @@ void MyFrame::OnToggleButtons(wxCommandEvent& event)
m_treeCtrl->CreateButtonsImageList(15); m_treeCtrl->CreateButtonsImageList(15);
wxGetApp().SetShowButtons(TRUE); wxGetApp().SetShowButtons(TRUE);
} }
#endif
} }
void MyFrame::OnCollapseAndReset(wxCommandEvent& event) void MyFrame::OnCollapseAndReset(wxCommandEvent& event)
@@ -632,6 +634,7 @@ void MyTreeCtrl::CreateImageList(int size)
void MyTreeCtrl::CreateButtonsImageList(int size) void MyTreeCtrl::CreateButtonsImageList(int size)
{ {
#if USE_GENERIC_TREECTRL || !defined(__WXMSW__)
if ( size == -1 ) if ( size == -1 )
{ {
SetButtonsImageList(NULL); SetButtonsImageList(NULL);
@@ -672,6 +675,7 @@ void MyTreeCtrl::CreateButtonsImageList(int size)
#endif // MSW/!MSW #endif // MSW/!MSW
AssignButtonsImageList(images); AssignButtonsImageList(images);
#endif
} }
MyTreeCtrl::~MyTreeCtrl() MyTreeCtrl::~MyTreeCtrl()