]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/longlong.cpp
Added wxGUIAppTraits::GetOSVersion() implementation.
[wxWidgets.git] / src / common / longlong.cpp
index 90dd05b8e40c2ff55feea6253c2edb032e1a1493..9265a4e803213134f3ad7d2b35ae2dc097bb3e78 100644 (file)
@@ -8,7 +8,7 @@
 // Created:     10.02.99
 // RCS-ID:      $Id$
 // Copyright:   (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
-// 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;
     }