diff options
author | Kim Motoyoshi Kalland <kim.kalland@nokia.com> | 2009-09-14 15:50:30 (GMT) |
---|---|---|
committer | Kim Motoyoshi Kalland <kim.kalland@nokia.com> | 2009-09-14 15:57:15 (GMT) |
commit | ab35f0f8b0d872bc2e963c6ef869fade71b83e3f (patch) | |
tree | af58509d936d6656fd6340c5f5da04aec85e912f /src/svg/qsvgnode_p.h | |
parent | 886feff55f48ebdff0440278e611f822e6326c91 (diff) | |
download | Qt-ab35f0f8b0d872bc2e963c6ef869fade71b83e3f.zip Qt-ab35f0f8b0d872bc2e963c6ef869fade71b83e3f.tar.gz Qt-ab35f0f8b0d872bc2e963c6ef869fade71b83e3f.tar.bz2 |
Fixed gradient referencing in SVGs.
An SVG element can now reference a gradient or solid-color defined
anywhere in the same SVG file.
Task-number: 245602
Reviewed-by: Trond
Diffstat (limited to 'src/svg/qsvgnode_p.h')
-rw-r--r-- | src/svg/qsvgnode_p.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/svg/qsvgnode_p.h b/src/svg/qsvgnode_p.h index 2831e65..1f5606a 100644 --- a/src/svg/qsvgnode_p.h +++ b/src/svg/qsvgnode_p.h @@ -117,12 +117,11 @@ public: QSvgNode *parent() const; - void appendStyleProperty(QSvgStyleProperty *prop, const QString &id, - bool justLink=false); + void appendStyleProperty(QSvgStyleProperty *prop, const QString &id); void applyStyle(QPainter *p, QSvgExtraStates &states); void revertStyle(QPainter *p, QSvgExtraStates &states); QSvgStyleProperty *styleProperty(QSvgStyleProperty::Type type) const; - QSvgStyleProperty *styleProperty(const QString &id) const; + QSvgFillStyleProperty *styleProperty(const QString &id) const; QSvgTinyDocument *document() const; @@ -162,7 +161,6 @@ protected: qreal strokeWidth() const; private: QSvgNode *m_parent; - QHash<QString, QSvgRefCounter<QSvgStyleProperty> > m_styles; QStringList m_requiredFeatures; QStringList m_requiredExtensions; |