From: Harco de Hilster Date: Mon, 23 Aug 1999 09:26:39 +0000 (+0000) Subject: Your typical c_str => c_str() fix. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/742af0714edae1368d4fd24603a7522214c55745 Your typical c_str => c_str() fix. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3444 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/intl.cpp b/src/common/intl.cpp index 3dd7a175ad..f21ab61887 100644 --- a/src/common/intl.cpp +++ b/src/common/intl.cpp @@ -343,7 +343,7 @@ bool wxMsgCatalog::Load(const wxChar *szDirPrefix, const wxChar *szName0) // Then why do you translate at all? Just use _T() and not _(). RR. wxLogVerbose(_("looking for catalog '%s' in path '%s'."), - szName.c_str, searchPath.c_str()); + szName.c_str(), searchPath.c_str()); wxString strFullName; if ( !wxFindFileInPath(&strFullName, searchPath, strFile) ) {