diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2023-08-16 11:16:21 +0200 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2023-08-16 12:22:13 +0200 |
commit | 8da4e517266e74d8b0e2cda02416263d8dd6f6bd (patch) | |
tree | 0a1a15a1912f37df0432dc5f727176c2fe0a4a1a /svgio/inc | |
parent | 500c73ba9e7dbe98ed82a64302f5b3a64f14b1ee (diff) |
svgio: fix typo in code
Change-Id: Ice8e830cebf307b6a4deb9dbbd26e65b34420a31
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155734
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'svgio/inc')
-rw-r--r-- | svgio/inc/svgtspannode.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svgio/inc/svgtspannode.hxx b/svgio/inc/svgtspannode.hxx index 991b0ac451f6..d5aa40471d28 100644 --- a/svgio/inc/svgtspannode.hxx +++ b/svgio/inc/svgtspannode.hxx @@ -84,7 +84,7 @@ namespace svgio::svgreader void setLengthAdjust(bool bNew) { mbLengthAdjust = bNew; } void concatenateTextLineWidth(double nWidth) {mnTextLineWidth += nWidth;} - double getTextLineWith() const { return mnTextLineWidth; } + double getTextLineWidth() const { return mnTextLineWidth; } }; } // end of namespace svgio::svgreader |