aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/scenegraph/openvg/qsgopenvgcontext.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/scenegraph/openvg/qsgopenvgcontext.cpp')
-rw-r--r--src/plugins/scenegraph/openvg/qsgopenvgcontext.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/scenegraph/openvg/qsgopenvgcontext.cpp b/src/plugins/scenegraph/openvg/qsgopenvgcontext.cpp
index 0d38cd2ab1..a47a4258b0 100644
--- a/src/plugins/scenegraph/openvg/qsgopenvgcontext.cpp
+++ b/src/plugins/scenegraph/openvg/qsgopenvgcontext.cpp
@@ -113,7 +113,7 @@ QSGRenderer *QSGOpenVGRenderContext::createRenderer(QSGRendererInterface::Render
QSGOpenVGContext::QSGOpenVGContext(QObject *parent)
{
- Q_UNUSED(parent)
+ Q_UNUSED(parent);
}
QSGRenderContext *QSGOpenVGContext::createRenderContext()
@@ -133,13 +133,13 @@ QSGImageNode *QSGOpenVGContext::createImageNode()
QSGPainterNode *QSGOpenVGContext::createPainterNode(QQuickPaintedItem *item)
{
- Q_UNUSED(item)
+ Q_UNUSED(item);
return new QSGOpenVGPainterNode(item);
}
QSGGlyphNode *QSGOpenVGContext::createGlyphNode(QSGRenderContext *rc, bool preferNativeGlyphNode)
{
- Q_UNUSED(preferNativeGlyphNode)
+ Q_UNUSED(preferNativeGlyphNode);
return new QSGOpenVGGlyphNode(rc);
}