From b8e302d2a08fe8775a459ff123fabd2565a50238 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sat, 14 Jul 2007 20:30:35 +0000 Subject: (svn r10562) -Fix: most of the MorphOS issues; MorphOS doesn't know about wchars, so disable all code that has to use wchars for MorphOS. --- src/misc/blob.hpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/misc/blob.hpp') diff --git a/src/misc/blob.hpp b/src/misc/blob.hpp index 86d924daf..78cac0f72 100644 --- a/src/misc/blob.hpp +++ b/src/misc/blob.hpp @@ -59,7 +59,9 @@ protected: /** type used as class member */ union { bitem_t *m_pData; ///< ptr to the first byte of data +#if defined(HAS_WCHAR) wchar_t *m_pwData; ///< ptr to the first byte of data +#endif /* HAS_WCHAR */ CHdr *m_pHdr_1; ///< ptr just after the CHdr holding m_size and m_max_size } ptr_u; -- cgit v1.2.3-54-g00ecf