]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stc/PlatWX.cpp
Allow using horizontal cursor navigation keys in non-readonly wxComboCtrl.
[wxWidgets.git] / src / stc / PlatWX.cpp
index f1f180a76292b2b7c5c45381be44a9abf36f3d19..9e69d2fcd587213f886d86527b709c0997a37d55 100644 (file)
@@ -1323,8 +1323,10 @@ void ListBoxImpl::RegisterImage(int type, const char *xpm_data) {
 void ListBoxImpl::RegisterRGBAImage(int type, int width, int height,
                                     const unsigned char *pixelsImage)
 {
+#ifdef wxHAS_RAW_BITMAP
     wxBitmap bmp = BitmapFromRGBAImage(width, height, pixelsImage);
     RegisterImageHelper(type, bmp);
+#endif
 }