From c35c7d01d48e3d8a93f747f120326cde7fe9b42d Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Fri, 7 Dec 2001 22:40:17 +0000 Subject: [PATCH] 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 --- src/common/longlong.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.50.0