From e81910e077529af6905429942dc3761a69255687 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Sat, 11 Mar 2000 19:31:33 +0000 Subject: [PATCH] fixed incorrect use of _() where it should be wxT() git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6628 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/html/helpctrl.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/html/helpctrl.cpp b/src/html/helpctrl.cpp index 6d6583db50..af0ba923d8 100644 --- a/src/html/helpctrl.cpp +++ b/src/html/helpctrl.cpp @@ -162,16 +162,16 @@ bool wxHtmlHelpController::Initialize(const wxString& file) wxSplitPath(file, & dir, & filename, & ext); if (!dir.IsEmpty()) - dir = dir + wxString(_("/")); + dir = dir + wxString(wxT("/")); // Try to find a suitable file - wxString actualFilename = dir + filename + wxString(_(".zip")); + wxString actualFilename = dir + filename + wxString(wxT(".zip")); if (!wxFileExists(actualFilename)) { - actualFilename = dir + filename + wxString(_(".htb")); + actualFilename = dir + filename + wxString(wxT(".htb")); if (!wxFileExists(actualFilename)) { - actualFilename = dir + filename + wxString(_(".hhp")); + actualFilename = dir + filename + wxString(wxT(".hhp")); if (!wxFileExists(actualFilename)) return FALSE; }