summaryrefslogtreecommitdiff
path: root/vcl/source
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2020-08-20 13:04:38 +0200
committerJulien Nabet <serval2412@yahoo.fr>2020-08-21 12:37:02 +0200
commit8ffb4cabd9ceac529f1c2d02bd1fdeb50bd2988b (patch)
treeb7e639924ba83491dcc272d65af077f7259e385b /vcl/source
parent4c64a07b5861108c9095cc9cfc14616c9e238456 (diff)
Fix typo in code
Change-Id: I977c6c5eaee5d1b6f9c3d0587e0a34ef46ee211e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101104 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'vcl/source')
-rw-r--r--vcl/source/gdi/TypeSerializer.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/gdi/TypeSerializer.cxx b/vcl/source/gdi/TypeSerializer.cxx
index e2f399f2d76a..ad5f3e3a6dc2 100644
--- a/vcl/source/gdi/TypeSerializer.cxx
+++ b/vcl/source/gdi/TypeSerializer.cxx
@@ -220,11 +220,11 @@ void TypeSerializer::readGraphic(Graphic& rGraphic)
{
sal_uInt32 nMagic1 = 0;
sal_uInt32 nMagic2 = 0;
- sal_uInt64 nBeginPoisition = mrStream.Tell();
+ sal_uInt64 nBeginPosition = mrStream.Tell();
mrStream.ReadUInt32(nMagic1);
mrStream.ReadUInt32(nMagic2);
- mrStream.Seek(nBeginPoisition);
+ mrStream.Seek(nBeginPosition);
if (!mrStream.GetError())
{