diff options
author | rakuco <rakuco@FreeBSD.org> | 2012-05-22 02:49:15 +0800 |
---|---|---|
committer | rakuco <rakuco@FreeBSD.org> | 2012-05-22 02:49:15 +0800 |
commit | c59adc33dad48c6c1e0fba8f5c5ad523287a2246 (patch) | |
tree | dc09358d8ddef576383e0a36a8e5f7e3bcd55f40 /editors | |
parent | e1cb7def0cfeab13228181393c4d15108576f8cc (diff) | |
download | freebsd-ports-gnome-c59adc33dad48c6c1e0fba8f5c5ad523287a2246.tar.gz freebsd-ports-gnome-c59adc33dad48c6c1e0fba8f5c5ad523287a2246.tar.zst freebsd-ports-gnome-c59adc33dad48c6c1e0fba8f5c5ad523287a2246.zip |
Add patch to make the port build with Qt 4.8.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/koffice-kde4/files/patch-plugins__chartshape__kdchart__src__KDChartBackgroundAttributes.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/editors/koffice-kde4/files/patch-plugins__chartshape__kdchart__src__KDChartBackgroundAttributes.cpp b/editors/koffice-kde4/files/patch-plugins__chartshape__kdchart__src__KDChartBackgroundAttributes.cpp new file mode 100644 index 000000000000..7491a755e09b --- /dev/null +++ b/editors/koffice-kde4/files/patch-plugins__chartshape__kdchart__src__KDChartBackgroundAttributes.cpp @@ -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; + } |