X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/40ec64aec28cc221635175a307d9e758cc647f6f..224d978ffb483f93864f8bf9a5cd61b1425a7fd5:/src/msw/helpchm.cpp diff --git a/src/msw/helpchm.cpp b/src/msw/helpchm.cpp index c991d47a3c..cdb46e21af 100644 --- a/src/msw/helpchm.cpp +++ b/src/msw/helpchm.cpp @@ -18,7 +18,7 @@ #if wxUSE_HELP && wxUSE_MS_HTML_HELP -#include "wx/filefn.h" +#include "wx/filename.h" #include "wx/msw/helpchm.h" #include "wx/dynload.h" @@ -50,7 +50,7 @@ HTMLHELP GetHtmlHelpFunction() if ( !s_htmlHelp ) { - static wxDynamicLibrary s_dllHtmlHelp(_T("HHCTRL.OCX"), wxDL_VERBATIM); + static wxDynamicLibrary s_dllHtmlHelp(wxT("HHCTRL.OCX"), wxDL_VERBATIM); if ( !s_dllHtmlHelp.IsLoaded() ) { @@ -156,8 +156,8 @@ wxCHMHelpController::DoDisplayTextPopup(const wxChar *text, popup.pszText = text; popup.pt.x = pos.x; popup.pt.y = pos.y; - popup.clrForeground = - popup.clrBackground = (COLORREF)-1; + popup.clrForeground = ::GetSysColor(COLOR_INFOTEXT); + popup.clrBackground = ::GetSysColor(COLOR_INFOBK); popup.rcMargins.top = popup.rcMargins.left = popup.rcMargins.right = @@ -219,7 +219,7 @@ bool wxCHMHelpController::Quit() wxString wxCHMHelpController::GetValidFilename() const { wxString path, name, ext; - wxSplitPath(m_helpFile, &path, &name, &ext); + wxFileName::SplitPath(m_helpFile, &path, &name, &ext); wxString fullName; if (path.IsEmpty())