diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2022-07-08 13:43:44 +0200 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2022-07-08 14:44:45 +0200 |
commit | f3b63915221129b92d539bec81e450d19388cfd3 (patch) | |
tree | 0686c12609ff5aeef0220e9d381f9f660c461829 /svgio | |
parent | 463178fef5c22f1a04d10e54491852d56e2038b0 (diff) |
svgio: forgot the 'else'
Spotted right after submitting 6dd0074e5e42467a7f82e363f67ca95d04466fa9
"tdf#149913: add support for auto-start-reverse", stupid me
Change-Id: Icaade6a5941f6e1cf6d612b56bbbfd4e2321a625
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136900
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'svgio')
-rw-r--r-- | svgio/source/svgreader/svgmarkernode.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svgio/source/svgreader/svgmarkernode.cxx b/svgio/source/svgreader/svgmarkernode.cxx index 21223c918032..31a277dfe81a 100644 --- a/svgio/source/svgreader/svgmarkernode.cxx +++ b/svgio/source/svgreader/svgmarkernode.cxx @@ -148,7 +148,7 @@ namespace svgio::svgreader { setMarkerOrient(MarkerOrient::auto_start); } - if(o3tl::equalsIgnoreAsciiCase(o3tl::trim(aContent), u"auto-start-reverse")) + else if(o3tl::equalsIgnoreAsciiCase(o3tl::trim(aContent), u"auto-start-reverse")) { setMarkerOrient(MarkerOrient::auto_start_reverse); } |