projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
wxUSE_IOSTREAMH always 0 for MinGW (finally closed patch #910058)
[wxWidgets.git]
/
include
/
wx
/
help.h
diff --git
a/include/wx/help.h
b/include/wx/help.h
index 98f7cee571d1bfbddebe130a9063073864539e5a..8fd7026427507f80744164a09b01b7b5e9d043a4 100644
(file)
--- a/
include/wx/help.h
+++ b/
include/wx/help.h
@@
-1,16
+1,31
@@
#ifndef _WX_HELP_H_BASE_
#define _WX_HELP_H_BASE_
#ifndef _WX_HELP_H_BASE_
#define _WX_HELP_H_BASE_
+#if wxUSE_HELP
+
#include "wx/helpbase.h"
#include "wx/helpbase.h"
-#ifdef __WXMSW__
+#ifdef __WXWINCE__
+ #include "wx/msw/wince/helpwce.h"
+
+ #define wxHelpController wxWinceHelpController
+#elif defined(__WXMSW__)
#include "wx/msw/helpwin.h"
#define wxHelpController wxWinHelpController
#include "wx/msw/helpwin.h"
#define wxHelpController wxWinHelpController
- #define sm_classwxHelpController sm_classwxWinHelpController
#else // !MSW
#else // !MSW
- #include "wx/helpbase.h"
+
+#if wxUSE_WXHTML_HELP
+ #include "wx/html/helpctrl.h"
+ #define wxHelpController wxHtmlHelpController
+#else
+ #include "wx/generic/helpext.h"
+ #define wxHelpController wxExtHelpController
+#endif
+
#endif // MSW/!MSW
#endif // MSW/!MSW
+#endif // wxUSE_HELP
+
#endif
// _WX_HELP_H_BASE_
#endif
// _WX_HELP_H_BASE_