]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/artprov/artbrows.cpp
removed old eVC project files
[wxWidgets.git] / samples / artprov / artbrows.cpp
index cbc1802c6a6a90fb10900a6784f24bea7c71bc46..8215ad556044dbf5b17a2a2b4f771f95aec7f399 100644 (file)
 
 #ifndef WX_PRECOMP
     #include "wx/wx.h"
-    #include "wx/listctrl.h"
     #include "wx/choice.h"
 #endif
 
+#include "wx/listctrl.h"
 #include "wx/sizer.h"
 #include "wx/imaglist.h"
+#include "wx/listctrl.h"
 
 #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)
 }