]> git.saurik.com Git - wxWidgets.git/commitdiff
a quick hack to fix wxBase compilation
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 25 Jun 2003 00:11:34 +0000 (00:11 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 25 Jun 2003 00:11:34 +0000 (00:11 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21376 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/fs_mem.h
src/common/fs_mem.cpp

index e304cd1143b2b1d6d15d89c030155167c4c25451..d800a80782cf858c746cb133d61b424b39c99502 100644 (file)
@@ -39,7 +39,9 @@ public:
     // Add file to list of files stored in memory. Stored data (bitmap, text or
     // raw data) will be copied into private memory stream and available under
     // name "memory:" + filename
+#if wxUSE_IMAGE
     static void AddFile(const wxString& filename, wxImage& image, long type);
+#endif // wxUSE_IMAGE
     static void AddFile(const wxString& filename, const wxString& textdata);
     static void AddFile(const wxString& filename, const void *binarydata, size_t size);
 
index 30995f3d050ae1478627be5f5dee466528ffa905..70fd638425cd067ee4eadffd05d3e281530d6b45 100644 (file)
@@ -172,6 +172,7 @@ bool wxMemoryFSHandlerBase::CheckHash(const wxString& filename)
 }
 
 
+#if wxUSE_IMAGE
 
 /*static*/ void
 wxMemoryFSHandlerBase::AddFile(const wxString& filename, wxImage& image, long type)
@@ -191,6 +192,7 @@ wxMemoryFSHandlerBase::AddFile(const wxString& filename, wxImage& image, long ty
     }
 }
 
+#endif // wxUSE_IMAGE
 
 /*static*/ void wxMemoryFSHandlerBase::AddFile(const wxString& filename, const wxString& textdata)
 {