git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45299
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
void WidgetsFrame::InitBook()
{
#if USE_ICONS_IN_BOOK
void WidgetsFrame::InitBook()
{
#if USE_ICONS_IN_BOOK
- wxImageList *imageList = new wxImageList(32, 32);
+ wxImageList *imageList = new wxImageList(ICON_SIZE, ICON_SIZE);
- imageList->Add(wxBitmap(sample_xpm));
+ wxImage img(sample_xpm);
+ imageList->Add(wxBitmap(img.Scale(ICON_SIZE, ICON_SIZE)));
#else
wxImageList *imageList = NULL;
#endif
#else
wxImageList *imageList = NULL;
#endif
wxTAB_TRAVERSAL)
{
#if USE_ICONS_IN_BOOK
wxTAB_TRAVERSAL)
{
#if USE_ICONS_IN_BOOK
- imaglist->Add(wxBitmap(icon));
+ imaglist->Add(wxBitmap(wxImage(icon).Scale(ICON_SIZE, ICON_SIZE)));
#else
wxUnusedVar(imaglist);
wxUnusedVar(icon);
#else
wxUnusedVar(imaglist);
wxUnusedVar(icon);
#define USE_ICONS_IN_BOOK 0
#else
#define USE_ICONS_IN_BOOK 1
#define USE_ICONS_IN_BOOK 0
#else
#define USE_ICONS_IN_BOOK 1
#endif
class WXDLLEXPORT wxCheckBox;
#endif
class WXDLLEXPORT wxCheckBox;