Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/qt-svg/files: 0279-svg-rendering-4.5.1-regression.diff
Date: Mon, 27 Apr 2009 19:49:38
Message-Id: E1LyWpb-0007oa-7h@stork.gentoo.org
1 hwoarang 09/04/27 19:49:35
2
3 Added: 0279-svg-rendering-4.5.1-regression.diff
4 Log:
5 Qt 4.5.1 release version bump
6 (Portage version: 2.2_rc31/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 x11-libs/qt-svg/files/0279-svg-rendering-4.5.1-regression.diff
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-svg/files/0279-svg-rendering-4.5.1-regression.diff?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-svg/files/0279-svg-rendering-4.5.1-regression.diff?rev=1.1&content-type=text/plain
13
14 Index: 0279-svg-rendering-4.5.1-regression.diff
15 ===================================================================
16 qt-bugs@ issue : none (not yet)
17 Qt Software task ID : none (not yet)
18 bugs.kde.org number : 190485 (at least)
19 applied: no
20 author: Alexis Menard <alexis.menard@×××××.com>
21
22 This patch fix the regression introduced in 4.5.1 with SVG rendering.
23 The problem appear when a gradient reference an another gradient which is after
24 in the svg.
25
26 Please clear your plasma cache as well.
27
28 This patch is already in 4.5 branch so it will be in 4.5.2.
29
30 Index: src/svg/qsvgstyle.cpp
31 ===================================================================
32 --- src/svg/qsvgstyle.cpp (revision 958572)
33 +++ src/svg/qsvgstyle.cpp (working copy)
34 @@ -808,6 +808,7 @@
35 static_cast<QSvgGradientStyle*>(prop);
36 st->resolveStops();
37 m_gradient->setStops(st->qgradient()->stops());
38 + m_gradientStopsSet = st->gradientStopsSet();
39 }
40 }
41 m_link = QString();