From: Václav Slavík Date: Fri, 7 Dec 2001 22:40:17 +0000 (+0000) Subject: compilation fix for wxULongLongWx::Divide (Vadim, is this correct?) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/c35c7d01d48e3d8a93f747f120326cde7fe9b42d compilation fix for wxULongLongWx::Divide (Vadim, is this correct?) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12908 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/longlong.cpp b/src/common/longlong.cpp index 0e6412f910..a76f895033 100644 --- a/src/common/longlong.cpp +++ b/src/common/longlong.cpp @@ -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);