Make wxHTML compile (and work) under CE.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26842 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
75b39b4c0b
commit
7127d12912
@ -35,6 +35,9 @@
|
||||
#include "wx/dynarray.h"
|
||||
#include "wx/arrimpl.cpp"
|
||||
|
||||
#ifdef __WXWINCE__
|
||||
#include "wx/msw/wince/missing.h" // for bsearch()
|
||||
#endif
|
||||
|
||||
// DLL options compatibility check:
|
||||
#include "wx/app.h"
|
||||
|
@ -30,8 +30,11 @@
|
||||
|
||||
FORCE_LINK_ME(m_layout)
|
||||
|
||||
|
||||
#include <stdlib.h> // bsearch()
|
||||
#ifdef __WXWINCE__
|
||||
#include "wx/msw/wince/missing.h" // for bsearch()
|
||||
#else
|
||||
#include <stdlib.h> // bsearch()
|
||||
#endif
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// wxHtmlPageBreakCell
|
||||
|
Loading…
Reference in New Issue
Block a user