From: Ron Lee Date: Sat, 1 Dec 2001 03:56:52 +0000 (+0000) Subject: oops, still missed one. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/9929591c138b1a7fb0d37c154c57d30379192459 oops, still missed one. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12791 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- 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; }