Fixed wxPostScript printing problem (used wrong constructor, and the right
one was wrong anyway...) Fixed include dir ordering in wxMotif makefiles (wrong version of zlib.h picked up) and added wxchar.cpp to Motif makefile. Changed buffer.h since there's no wchar.h on my system. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2243 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -17,6 +17,13 @@
|
||||
#include "wx/wxchar.h"
|
||||
#include <string.h> // strdup
|
||||
|
||||
// wchar.h isn't available on my system (Linux, g++ 2.7.2). JACS.
|
||||
#ifdef __LINUX__
|
||||
#include <wcstr.h>
|
||||
#else
|
||||
#include <wchar.h> // wchar_t
|
||||
#endif
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// Special classes for (wide) character strings: they use malloc/free instead
|
||||
// of new/delete
|
||||
|
Reference in New Issue
Block a user