]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/icon.cpp
Forgot to set GtkIter stamp in Select() and friends
[wxWidgets.git] / src / motif / icon.cpp
index b0a0168c5167ef6f14cbd62bcfba5bc603a28538..eaa688689b8dbcb82cb9890dcea37786561f3f1d 100644 (file)
@@ -30,13 +30,15 @@ wxIcon::wxIcon(const char bits[], int width, int height)
     (void) Create((void*) bits, wxBITMAP_TYPE_XBM_DATA, width, height, 1);
 }
 
+#ifdef wxNEEDS_CHARPP
 // Create from XPM data
 wxIcon::wxIcon(char **data)
 {
     (void) Create((void*) data, wxBITMAP_TYPE_XPM_DATA, 0, 0, 0);
 }
+#endif
 
-wxIcon::wxIcon(const char **data)
+wxIcon::wxIcon(const char* const* data)
 {
     (void) Create((void*) data, wxBITMAP_TYPE_XPM_DATA, 0, 0, 0);
 }