From 11968fef9c0531e3aa399639db04ff1f7ad80944 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 10 Apr 2003 18:14:38 +0000 Subject: [PATCH] don't use deprecated IntToString function git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20121 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/cshelp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/cshelp.cpp b/src/common/cshelp.cpp index b5091e8369..74328e6d49 100644 --- a/src/common/cshelp.cpp +++ b/src/common/cshelp.cpp @@ -419,7 +419,7 @@ bool wxHelpControllerHelpProvider::ShowHelp(wxWindowBase *window) // Convenience function for turning context id into wxString wxString wxContextId(int id) { - return wxString(IntToString(id)); + return wxString::Format(_T("%d"), id); } // ----------------------------------------------------------------------------