]> git.saurik.com Git - wxWidgets.git/commitdiff
oops, still missed one.
authorRon Lee <ron@debian.org>
Sat, 1 Dec 2001 03:56:52 +0000 (03:56 +0000)
committerRon Lee <ron@debian.org>
Sat, 1 Dec 2001 03:56:52 +0000 (03:56 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12791 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/longlong.cpp

index 90dd05b8e40c2ff55feea6253c2edb032e1a1493..0e6412f91095efa002041a914d4f8a7e7e4e258a 100644 (file)
@@ -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;
     }