From 35c8abd8b9a6d14069768d55a27030e87d8fb114 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Sat, 28 Dec 2002 22:58:12 +0000 Subject: [PATCH] Use path separator, not "/" git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@18445 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/html/helpctrl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/html/helpctrl.cpp b/src/html/helpctrl.cpp index 66b763c641..ad81be8c1a 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"));