From 9929591c138b1a7fb0d37c154c57d30379192459 Mon Sep 17 00:00:00 2001 From: Ron Lee Date: Sat, 1 Dec 2001 03:56:52 +0000 Subject: [PATCH] oops, still missed one. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12791 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/longlong.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/longlong.cpp b/src/common/longlong.cpp index 90dd05b8e4..0e6412f910 100644 --- a/src/common/longlong.cpp +++ b/src/common/longlong.cpp @@ -1113,7 +1113,7 @@ wxULongLongWx::ToString() const while ( ll != 0 ) { - result.Prepend((wxChar)(_T('0') + (ll % 10).ToLong())); + result.Prepend((wxChar)(_T('0') + (ll % 10).ToULong())); ll /= 10; } -- 2.50.0