Applied some of the SGI fixes. Don't know about the

toolbar one.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5626 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2000-01-24 13:27:37 +00:00
parent 510fc784c0
commit 55dfa8d3ea
3 changed files with 6 additions and 3 deletions

View File

@@ -591,7 +591,9 @@ wxLongLongWx& wxLongLongWx::operator/=(const wxLongLongWx& ll)
Divide(ll, quotient, remainder);
return *this = quotient;
*this = quotient;
return *this;
}
wxLongLongWx wxLongLongWx::operator%(const wxLongLongWx& ll) const