diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2020-01-10 22:25:18 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2020-01-10 23:28:32 +0100 |
commit | 5176aa6ca0282d4645d727f939375e66aea4ad80 (patch) | |
tree | 4cbe7da29a32b62fd18d7f2623612f1b29840619 /vcl/headless | |
parent | fc93925a935960c750f400b9b3c79a592baaf5fe (diff) |
Fix typo
Change-Id: I34bd331992d381d2d294d01ffbee50c0be93df45
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86583
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'vcl/headless')
-rw-r--r-- | vcl/headless/svpgdi.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/headless/svpgdi.cxx b/vcl/headless/svpgdi.cxx index c792bb98a6b8..8c76c21f4f9d 100644 --- a/vcl/headless/svpgdi.cxx +++ b/vcl/headless/svpgdi.cxx @@ -120,13 +120,13 @@ namespace return aDamageRect; } - // The caching logic is surprsingly expensive - so avoid it sometimes. + // The caching logic is surprisingly expensive - so avoid it sometimes. inline bool isTrivial(const basegfx::B2DPolyPolygon& rPolyPolygon) { return rPolyPolygon.count() == 1 && rPolyPolygon.begin()->count() <= 4; } - // The caching logic is surprsingly expensive - so avoid it sometimes. + // The caching logic is surprisingly expensive - so avoid it sometimes. inline bool isTrivial(const basegfx::B2DPolygon& rPolyLine) { return rPolyLine.count() <= 4; |