Add patch to make the port build with Qt 4.8.

This commit is contained in:
Raphael Kubo da Costa 2012-05-21 18:49:15 +00:00
parent 6b0257b387
commit 17fa8f3139
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=297140

View file

@ -0,0 +1,19 @@
--- plugins/chartshape/kdchart/src/KDChartBackgroundAttributes.cpp~ 2012-05-21 15:46:35.000000000 -0300
+++ plugins/chartshape/kdchart/src/KDChartBackgroundAttributes.cpp 2012-05-21 15:47:17.000000000 -0300
@@ -22,6 +22,7 @@
#include "KDChartBackgroundAttributes.h"
#include <QPixmap>
+#include <QVariant>
#include <KDABLibFakes>
@@ -150,7 +151,7 @@
<< "visible="<<ba.isVisible()
<< "brush="<<ba.brush()
<< "pixmapmode="<<ba.pixmapMode()
- << "pixmap="<<ba.pixmap()
+ << "pixmap="<<QVariant(ba.pixmap())
<< ")";
return dbg;
}