CHM help is not compiled for wxUniversal.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27169 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Mattia Barbon 2004-05-08 09:38:14 +00:00
parent 6aa33060cd
commit 62cdd7d3f8
2 changed files with 5 additions and 2 deletions

View File

@ -16,7 +16,8 @@
#pragma interface "helpbest.h"
#endif
#if wxUSE_HELP && wxUSE_MS_HTML_HELP && defined(__WIN95__) && wxUSE_WXHTML_HELP
#if wxUSE_HELP && wxUSE_MS_HTML_HELP && defined(__WIN95__) \
&& wxUSE_WXHTML_HELP && !defined(__WXUNIVERSAL__)
#include "wx/helpbase.h"

View File

@ -27,7 +27,9 @@
#include "wx/filefn.h"
#include "wx/log.h"
#if wxUSE_HELP && wxUSE_MS_HTML_HELP && defined(__WIN95__) && wxUSE_WXHTML_HELP
#if wxUSE_HELP && wxUSE_MS_HTML_HELP && defined(__WIN95__) \
&& wxUSE_WXHTML_HELP && !defined(__WXUNIVERSAL__)
#include "wx/msw/helpchm.h"
#include "wx/html/helpctrl.h"
#include "wx/msw/helpbest.h"