X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/04c4c93f00e0329ab4b076137198f451fb4e3dc6..85da04e95be79f3313dd45f660683bd3d4c505a2:/samples/artprov/artbrows.cpp diff --git a/samples/artprov/artbrows.cpp b/samples/artprov/artbrows.cpp index 359130f9a4..66d967ee0e 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++; \ }