diff options
author | Andy Shaw <andy.shaw@theqtcompany.com> | 2015-10-15 15:00:43 +0200 |
---|---|---|
committer | Andy Shaw <andy.shaw@theqtcompany.com> | 2015-10-20 08:56:00 +0000 |
commit | 3bc5fc54165a72b2e1b820ca1f389a048ecdcf30 (patch) | |
tree | c027b1ca44bea89e249fd6fed37fca5db00025fd /src/svg | |
parent | b5d689eaafd1e243d38f4df30f2d35eaab8b3b44 (diff) | |
download | qtsvg-3bc5fc54165a72b2e1b820ca1f389a048ecdcf30.tar.gz |
Add missing string for tspan
The node name list needs to be kept in sync with the QSvgNode::Type enum
otherwise it will match the wrong name for the wrong value after the
missing entry.
Change-Id: Ib13025bc3c5f31ff4f76638d05d1419ad091622b
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@theqtcompany.com>
Diffstat (limited to 'src/svg')
-rw-r--r-- | src/svg/qsvghandler.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/svg/qsvghandler.cpp b/src/svg/qsvghandler.cpp index 435e51a..4f8c172 100644 --- a/src/svg/qsvghandler.cpp +++ b/src/svg/qsvghandler.cpp @@ -410,6 +410,7 @@ static const char * QSvgStyleSelector_nodeString[] = { "rect", "text", "textarea", + "tspan", "use", "video" }; |