X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8e38fd1fb0d8c4508383f3d9ce2f3ae0c6d39cfd..8868ab33139845e438a4493ddee209e5849481b4:/src/common/longlong.cpp diff --git a/src/common/longlong.cpp b/src/common/longlong.cpp index 90dd05b8e4..9265a4e803 100644 --- a/src/common/longlong.cpp +++ b/src/common/longlong.cpp @@ -8,7 +8,7 @@ // Created: 10.02.99 // RCS-ID: $Id$ // Copyright: (c) 1998 Vadim Zeitlin -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// // ============================================================================ @@ -996,7 +996,7 @@ wxLongLongWx& wxLongLongWx::operator/=(const wxLongLongWx& ll) wxULongLongWx& wxULongLongWx::operator/=(const wxULongLongWx& ll) { - wxLongLongWx quotient, remainder; + wxULongLongWx quotient, remainder; Divide(ll, quotient, remainder); @@ -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; }