X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77c950fdade357122cabf64fdc37c609f2317ad6..a65b84f43417c8d0d156d63ae12474b29d1a739c:/include/wx/msw/helpchm.h?ds=sidebyside diff --git a/include/wx/msw/helpchm.h b/include/wx/msw/helpchm.h index ffe1f74126..a1fbe91034 100644 --- a/include/wx/msw/helpchm.h +++ b/include/wx/msw/helpchm.h @@ -16,7 +16,7 @@ #include "wx/helpbase.h" -class WXDLLEXPORT wxCHMHelpController : public wxHelpControllerBase +class WXDLLIMPEXP_CORE wxCHMHelpController : public wxHelpControllerBase { public: wxCHMHelpController(wxWindow* parentWindow = NULL): wxHelpControllerBase(parentWindow) { } @@ -56,7 +56,7 @@ protected: static bool CallHtmlHelp(wxWindow *win, const wxChar *str, unsigned cmd, const void *param = NULL) { - return CallHtmlHelp(win, str, cmd, wx_reinterpret_cast(WXWPARAM, param)); + return CallHtmlHelp(win, str, cmd, reinterpret_cast(param)); } // even simpler wrappers using GetParentWindow() and GetValidFilename() as @@ -69,7 +69,7 @@ protected: bool CallHtmlHelp(unsigned cmd, const void *param = NULL) { - return CallHtmlHelp(cmd, wx_reinterpret_cast(WXWPARAM, param)); + return CallHtmlHelp(cmd, reinterpret_cast(param)); } // wrapper around CallHtmlHelp(HH_DISPLAY_TEXT_POPUP): only one of text and