af62434159
svn path=/nixpkgs/trunk/; revision=32230
33 lines
882 B
Diff
33 lines
882 B
Diff
From: Christoph Feck <christoph@maxiom.de>
|
|
Date: Thu, 10 Nov 2011 11:34:20 +0000
|
|
Subject: Fix compile with Qt 4.8
|
|
X-Git-Url: http://quickgit.kde.org/?p=kmymoney.git&a=commitdiff&h=8324cfb9657d8c03f83691402386e8c5bfb29981
|
|
---
|
|
Fix compile with Qt 4.8
|
|
|
|
Sideported commits f42a0a3d878afebb298609c9886851858c56cc15 and
|
|
fe74b25bf3b78c42e95569fe467a397876bc9c04 from massif-visualizer
|
|
---
|
|
|
|
|
|
--- a/libkdchart/src/KDChartBackgroundAttributes.cpp
|
|
+++ b/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 KDCh
|
|
<< "visible="<<ba.isVisible()
|
|
<< "brush="<<ba.brush()
|
|
<< "pixmapmode="<<ba.pixmapMode()
|
|
- << "pixmap="<<ba.pixmap()
|
|
+ << "pixmap="<<QVariant(ba.pixmap())
|
|
<< ")";
|
|
return dbg;
|
|
}
|
|
|