From: Julian Smart Date: Sat, 28 Dec 2002 22:58:12 +0000 (+0000) Subject: Use path separator, not "/" X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/0222a60b3491fa0835b4b0d41430c745e9b90615 Use path separator, not "/" git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18445 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/html/helpctrl.cpp b/src/html/helpctrl.cpp index 66b763c641..1748fef73d 100644 --- a/src/html/helpctrl.cpp +++ b/src/html/helpctrl.cpp @@ -176,7 +176,7 @@ bool wxHtmlHelpController::Initialize(const wxString& file) wxSplitPath(file, & dir, & filename, & ext); if (!dir.IsEmpty()) - dir = dir + wxString(wxT("/")); + dir = dir + wxFILE_SEP_PATH; // Try to find a suitable file wxString actualFilename = dir + filename + wxString(wxT(".zip"));