aboutsummaryrefslogtreecommitdiff
path: root/finance
diff options
context:
space:
mode:
authorRaphael Kubo da Costa <rakuco@FreeBSD.org>2012-05-21 18:37:36 +0000
committerRaphael Kubo da Costa <rakuco@FreeBSD.org>2012-05-21 18:37:36 +0000
commit6b0257b387a0cb38b62a88faaf67afbd210e5ef3 (patch)
tree7ca348884ed29a5e8235bc2f0bec95fbda141c6b /finance
parent400a11297cb03569e2ddf2d6bea59571362462fd (diff)
Notes
Diffstat (limited to 'finance')
-rw-r--r--finance/kmymoney-kde4/files/patch-libkdchart__src__KDChartBackgroundAttributes.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/finance/kmymoney-kde4/files/patch-libkdchart__src__KDChartBackgroundAttributes.cpp b/finance/kmymoney-kde4/files/patch-libkdchart__src__KDChartBackgroundAttributes.cpp
new file mode 100644
index 000000000000..7b15df7bbb4b
--- /dev/null
+++ b/finance/kmymoney-kde4/files/patch-libkdchart__src__KDChartBackgroundAttributes.cpp
@@ -0,0 +1,30 @@
+commit 8324cfb9657d8c03f83691402386e8c5bfb29981
+Author: Christoph Feck <christoph@maxiom.de>
+Date: Thu Nov 10 12:34:20 2011 +0100
+
+ Fix compile with Qt 4.8
+
+ Sideported commits f42a0a3d878afebb298609c9886851858c56cc15 and
+ fe74b25bf3b78c42e95569fe467a397876bc9c04 from massif-visualizer
+
+diff --git a/libkdchart/src/KDChartBackgroundAttributes.cpp b/libkdchart/src/KDChartBackgroundAttributes.cpp
+index f9f1520..3b86000 100644
+--- ./libkdchart/src/KDChartBackgroundAttributes.cpp
++++ ./libkdchart/src/KDChartBackgroundAttributes.cpp
+@@ -22,6 +22,7 @@
+
+ #include "KDChartBackgroundAttributes.h"
+ #include <QPixmap>
++#include <QVariant>
+
+ #include <KDABLibFakes>
+
+@@ -150,7 +151,7 @@ QDebug operator<<(QDebug dbg, const KDChart::BackgroundAttributes& ba)
+ << "visible="<<ba.isVisible()
+ << "brush="<<ba.brush()
+ << "pixmapmode="<<ba.pixmapMode()
+- << "pixmap="<<ba.pixmap()
++ << "pixmap="<<QVariant(ba.pixmap())
+ << ")";
+ return dbg;
+ }