X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/04c4c93f00e0329ab4b076137198f451fb4e3dc6..c7fa61e5ec4ac323c865adeb01e0c9f232faae20:/samples/artprov/artbrows.cpp?ds=sidebyside diff --git a/samples/artprov/artbrows.cpp b/samples/artprov/artbrows.cpp index 359130f9a4..8215ad5560 100644 --- a/samples/artprov/artbrows.cpp +++ b/samples/artprov/artbrows.cpp @@ -25,6 +25,7 @@ #include "wx/choice.h" #endif +#include "wx/listctrl.h" #include "wx/sizer.h" #include "wx/imaglist.h" #include "wx/listctrl.h" @@ -32,7 +33,7 @@ #include "artbrows.h" #define ART_CLIENT(id) \ - choice->Append(#id, (void*)id); + choice->Append(_T(#id), (void*)id); #define ART_ICON(id) \ { \ int ind; \ @@ -41,7 +42,7 @@ ind = images->Add(icon); \ else \ ind = 0; \ - list->InsertItem(index, #id, ind); \ + list->InsertItem(index, _T(#id), ind); \ list->SetItemData(index, (long)id); \ index++; \ } @@ -95,6 +96,7 @@ static void FillBitmaps(wxImageList *images, wxListCtrl *list, ART_ICON(wxART_NORMAL_FILE) ART_ICON(wxART_TICK_MARK) ART_ICON(wxART_CROSS_MARK) + ART_ICON(wxART_MISSING_IMAGE) }