From 9b24b388c15cab582cfe52e40eb1f9e65e6994c1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Fri, 13 Jun 2003 23:25:09 +0000 Subject: [PATCH] compilation fix for platforms w/o wxRawBitmap git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21141 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/image/image.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/samples/image/image.cpp b/samples/image/image.cpp index 61fb9a85d4..d2990f2b81 100644 --- a/samples/image/image.cpp +++ b/samples/image/image.cpp @@ -34,10 +34,10 @@ #if !defined(__WINDOWS__) || wxUSE_XPM_IN_MSW #include "smile.xpm" #endif -#ifndef __VMS -# include "wx/rawbmp.h" -#define wxHAVE_RAW_BITMAP +#if defined(__WXMSW__) || defined(__WXMAC__) + #include "wx/rawbmp.h" + #define wxHAVE_RAW_BITMAP #endif // derived classes -- 2.45.2