aboutsummaryrefslogtreecommitdiff
path: root/finance
diff options
context:
space:
mode:
authorDavid Naylor <dbn@FreeBSD.org>2013-03-07 16:13:35 +0000
committerDavid Naylor <dbn@FreeBSD.org>2013-03-07 16:13:35 +0000
commitf391ca611e4a642fc3b0e7df30f4a60b63f60b71 (patch)
treece4826ee328779d3369132da77933fa5aa5db4ef /finance
parent5282fd84513c4974871dc1647bbe9add15e52434 (diff)
downloadports-f391ca611e4a642fc3b0e7df30f4a60b63f60b71.tar.gz
ports-f391ca611e4a642fc3b0e7df30f4a60b63f60b71.zip
Notes
Diffstat (limited to 'finance')
-rw-r--r--finance/kmymoney-kde4/files/patch-kmymoney_mymoney_mymoneymoney.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/finance/kmymoney-kde4/files/patch-kmymoney_mymoney_mymoneymoney.cpp b/finance/kmymoney-kde4/files/patch-kmymoney_mymoney_mymoneymoney.cpp
new file mode 100644
index 000000000000..22deba5715da
--- /dev/null
+++ b/finance/kmymoney-kde4/files/patch-kmymoney_mymoney_mymoneymoney.cpp
@@ -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;