From: Sylvain Bougnoux Date: Wed, 18 Aug 1999 12:50:30 +0000 (+0000) Subject: change some #ifdef X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/9ce29a28cdae75b54b32629fa14d38532e339959 change some #ifdef git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3411 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/treectrl/treetest.cpp b/samples/treectrl/treetest.cpp index 4c07872661..8335f176b7 100644 --- a/samples/treectrl/treetest.cpp +++ b/samples/treectrl/treetest.cpp @@ -42,7 +42,9 @@ // under Windows the icons are in the .rc file #ifndef __WXMSW__ +#ifdef NO_VARIABLE_HEIGHT #include "icon1.xpm" +#endif #include "icon2.xpm" #include "mondrian.xpm" #endif @@ -414,11 +416,13 @@ MyTreeCtrl::MyTreeCtrl(wxWindow *parent, const wxWindowID id, long style) : wxTreeCtrl(parent, id, pos, size, style) { -#if (USE_TR_HAS_VARIABLE_ROW_HIGHT && wxUSE_LIBJPEG) +#ifndef NO_VARIABLE_HEIGHT +#if wxUSE_LIBJPEG wxImage::AddHandler(new wxJPEGHandler); wxImage image; image.LoadFile(wxString("horse.jpg"), wxBITMAP_TYPE_JPEG ); +#endif #endif m_reverseSort = FALSE; @@ -430,14 +434,14 @@ MyTreeCtrl::MyTreeCtrl(wxWindow *parent, const wxWindowID id, #if defined(__WXMSW__) && defined(__WIN16__) // This is required in 16-bit Windows mode only because we can't load a specific (16x16) // icon image, so it comes out stretched -# if USE_TR_HAS_VARIABLE_ROW_HIGHT +# ifndef NO_VARIABLE_HEIGHT m_imageListNormal->Add(image.ConvertToBitmap()); # else m_imageListNormal->Add(wxBitmap("bitmap1", wxBITMAP_TYPE_BMP_RESOURCE)); # endif m_imageListNormal->Add(wxBitmap("bitmap2", wxBITMAP_TYPE_BMP_RESOURCE)); #else -# if USE_TR_HAS_VARIABLE_ROW_HIGHT +# ifndef NO_VARIABLE_HEIGHT m_imageListNormal->Add(image.ConvertToBitmap()); # else m_imageListNormal->Add(wxICON(icon1));