Back-port commit 77209f84: Fix build (of finance/kmymoney-kde4) with GMP 5.1.0
""" GMP 5.1.0 no longer has implicit conversions to mpz_class from mpq_class or mpf_class. So we have to have an explicit conversion. """ Approved by: bdrewery (mentor), jhale (maintainer timeout: 2 weeks)
This commit is contained in:
parent
5282fd8451
commit
f391ca611e
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=313598
@ -0,0 +1,24 @@
|
||||
commit 77209f84a85360e98d2e805d412956a8f2a77db3
|
||||
Author: Alex Merry <kde@randomguy3.me.uk>
|
||||
Date: Fri Feb 1 15:31:54 2013 +0000
|
||||
|
||||
Fix build with GMP 5.1.0
|
||||
|
||||
GMP 5.1.0 no longer has implicit conversions to mpz_class from mpq_class
|
||||
or mpf_class. So we have to have an explicit conversion.
|
||||
|
||||
BUG: 312481
|
||||
|
||||
diff --git a/kmymoney/mymoney/mymoneymoney.cpp b/kmymoney/mymoney/mymoneymoney.cpp
|
||||
index aeed135..5de7fa9 100644
|
||||
--- kmymoney/mymoney/mymoneymoney.cpp
|
||||
+++ kmymoney/mymoney/mymoneymoney.cpp
|
||||
@@ -158,7 +158,7 @@ QString MyMoneyMoney::formatMoney(const QString& currency, const int prec, bool
|
||||
// be much better than using KGlobal::locale()->formatMoney.
|
||||
bool bNegative = false;
|
||||
mpz_class left = value / static_cast<MyMoneyMoney>(convertDenominator(d)).valueRef().get_den();
|
||||
- mpz_class right = (valueRef() - mpq_class(left)) * denom;
|
||||
+ mpz_class right = mpz_class((valueRef() - mpq_class(left)) * denom);
|
||||
|
||||
if (right < 0) {
|
||||
right = -right;
|
Loading…
Reference in New Issue
Block a user