summaryrefslogtreecommitdiffstats
path: root/src/svg/qsvghandler.cpp
diff options
context:
space:
mode:
authorKim Motoyoshi Kalland <kim.kalland@nokia.com>2009-08-25 12:13:11 +0200
committerKim Motoyoshi Kalland <kim.kalland@nokia.com>2009-08-25 12:34:18 +0200
commit2aeeda9b82440dbcb3564c185003288b83f49683 (patch)
treecc21ff80d2c266c0ea86b373c85f098586edf8a6 /src/svg/qsvghandler.cpp
parent59d974cfd899832dc88c0183582147162bf721be (diff)
Added missing variable initialization in QSvgStrokeStyle ctor.
The bug this commit fixes was introduced by commit 28ac217b04abaa4d226e43e402c14a88539fca3b. Reviewed-by: Trond
Diffstat (limited to 'src/svg/qsvghandler.cpp')
-rw-r--r--src/svg/qsvghandler.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/svg/qsvghandler.cpp b/src/svg/qsvghandler.cpp
index b2a2cb8c09..5b778d20e1 100644
--- a/src/svg/qsvghandler.cpp
+++ b/src/svg/qsvghandler.cpp
@@ -3299,7 +3299,7 @@ bool QSvgHandler::startElement(const QString &localName,
m_style = prop;
m_nodes.top()->appendStyleProperty(prop, someId(attributes), true);
} else {
- qWarning("Couldn't parse node: %s", qPrintable(localName));
+ qWarning("Could not parse node: %s", qPrintable(localName));
}
} else if (StyleParseMethod method = findStyleUtilFactoryMethod(localName)) {
if (m_style) {
@@ -3366,7 +3366,7 @@ bool QSvgHandler::endElement(const QStringRef &localName)
if (style->type() == QSvgStyleProperty::SOLID_COLOR || style->type() == QSvgStyleProperty::GRADIENT)
fill->setFillStyle(reinterpret_cast<QSvgFillStyleProperty *>(style));
} else {
- qWarning("Couldn't resolve property : %s",qPrintable(id));
+ qWarning("Could not resolve property : %s",qPrintable(id));
fill->setBrush(QBrush(Qt::NoBrush));
}
}
@@ -3378,7 +3378,7 @@ bool QSvgHandler::endElement(const QStringRef &localName)
if (style->type() == QSvgStyleProperty::SOLID_COLOR || style->type() == QSvgStyleProperty::GRADIENT)
stroke->setStyle(reinterpret_cast<QSvgFillStyleProperty *>(style));
} else {
- qWarning("Couldn't resolve property : %s",qPrintable(id));
+ qWarning("Could not resolve property : %s",qPrintable(id));
stroke->setStroke(QBrush(Qt::NoBrush));
}
}