From 9ab6ee851ebc3200fa7d40381a06d27b4fac61d1 Mon Sep 17 00:00:00 2001 From: Guillermo Rodriguez Garcia Date: Thu, 9 Sep 1999 22:19:18 +0000 Subject: [PATCH] Ops. wxUSE_XXX and wxUSE_STREAMS are separated again :-) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/imaggif.cpp | 8 ++++++-- src/common/imagjpeg.cpp | 8 ++++++-- src/common/imagpng.cpp | 7 +++++-- src/common/imagpnm.cpp | 6 ++++-- 4 files changed, 21 insertions(+), 8 deletions(-) diff --git a/src/common/imaggif.cpp b/src/common/imaggif.cpp index 7b3e5ba0df..e9a0fc880a 100644 --- a/src/common/imaggif.cpp +++ b/src/common/imaggif.cpp @@ -23,7 +23,7 @@ # include "wx/defs.h" #endif -#if wxUSE_STREAMS && wxUSE_GIF +#if wxUSE_GIF #include "wx/image.h" #include "wx/gifdecod.h" @@ -38,6 +38,8 @@ IMPLEMENT_DYNAMIC_CLASS(wxGIFHandler,wxImageHandler) // wxGIFHandler //----------------------------------------------------------------------------- +#if wxUSE_STREAMS + bool wxGIFHandler::LoadFile( wxImage *image, wxInputStream& stream, bool verbose ) { wxGIFDecoder *decod; @@ -89,4 +91,6 @@ bool wxGIFHandler::CanRead( wxInputStream& stream ) return ok; } -#endif // wxUSE_STREAMS && wxUSE_GIF +#endif // wxUSE_STREAMS + +#endif // wxUSE_GIF diff --git a/src/common/imagjpeg.cpp b/src/common/imagjpeg.cpp index 890985f957..b2e4447a02 100644 --- a/src/common/imagjpeg.cpp +++ b/src/common/imagjpeg.cpp @@ -21,7 +21,7 @@ #include "wx/defs.h" -#if wxUSE_STREAMS && wxUSE_LIBJPEG +#if wxUSE_LIBJPEG #include "wx/image.h" #include "wx/bitmap.h" @@ -59,6 +59,8 @@ extern "C" { IMPLEMENT_DYNAMIC_CLASS(wxJPEGHandler,wxImageHandler) #endif +#if wxUSE_STREAMS + //------------- JPEG Data Source Manager typedef struct { @@ -318,7 +320,9 @@ bool wxJPEGHandler::CanRead( wxInputStream& stream ) return (hdr[0] == 0xFF && hdr[1] == 0xD8); } -#endif // wxUSE_STREAMS && wxUSE_LIBJPEG +#endif // wxUSE_STREAMS + +#endif // wxUSE_LIBJPEG diff --git a/src/common/imagpng.cpp b/src/common/imagpng.cpp index 7d8cfcad54..1815bcb1ba 100644 --- a/src/common/imagpng.cpp +++ b/src/common/imagpng.cpp @@ -23,7 +23,7 @@ #include "wx/defs.h" #endif -#if wxUSE_STREAMS && wxUSE_LIBPNG +#if wxUSE_LIBPNG #include "wx/image.h" #include "wx/bitmap.h" @@ -57,6 +57,8 @@ IMPLEMENT_DYNAMIC_CLASS(wxPNGHandler,wxImageHandler) #endif +#if wxUSE_LIBPNG + #if defined(__VISAGECPP__) #define LINKAGEMODE _Optlink #else @@ -353,5 +355,6 @@ bool wxPNGHandler::CanRead( wxInputStream& stream ) return (hdr[0] == 0x89 && hdr[1] == 'P' && hdr[2] == 'N' && hdr[3] == 'G'); } -#endif // wxUSE_STREAMS && wxUSE_LIBPNG +#endif // wxUSE_STREAMS +#endif // wxUSE_LIBPNG diff --git a/src/common/imagpnm.cpp b/src/common/imagpnm.cpp index d50e4247a2..28bf08eba3 100644 --- a/src/common/imagpnm.cpp +++ b/src/common/imagpnm.cpp @@ -23,7 +23,7 @@ # include "wx/setup.h" #endif -#if wxUSE_STREAMS && wxUSE_PNM +#if wxUSE_PNM #include "wx/image.h" #include "wx/log.h" @@ -37,6 +37,7 @@ IMPLEMENT_DYNAMIC_CLASS(wxPNMHandler,wxImageHandler) #endif +#if wxUSE_STREAMS void Skip_Comment(wxInputStream &stream) { @@ -155,5 +156,6 @@ bool wxPNMHandler::CanRead( wxInputStream& stream ) } -#endif // wxUSE_STREAMS && wxUSE_PNM +#endif // wxUSE_STREAMS +#endif // wxUSE_PNM -- 2.45.2