summaryrefslogtreecommitdiff
path: root/vcl/source
diff options
context:
space:
mode:
authorLuc Castermans <luc.castermans@gmail.com>2014-04-05 13:23:54 +0200
committerDavid Tardon <dtardon@redhat.com>2014-04-05 06:27:27 -0500
commitc7ec62e2e00f47749f6bc47b724dabd6e529f2ae (patch)
tree0f832bff1f0f4e8e3f4d433c00b8b46853595350 /vcl/source
parent6c1744613e09345005d98c24b22a72c536887328 (diff)
Translated variable name to English nZchPos => nCharPos
Change-Id: I8ad44252f980921f71259b1d62636a8f4979f0c0 Reviewed-on: https://gerrit.libreoffice.org/8869 Tested-by: David Tardon <dtardon@redhat.com> Reviewed-by: David Tardon <dtardon@redhat.com>
Diffstat (limited to 'vcl/source')
-rw-r--r--vcl/source/filter/sgvmain.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/filter/sgvmain.cxx b/vcl/source/filter/sgvmain.cxx
index a2e7c14122c6..b2f4a413c6c8 100644
--- a/vcl/source/filter/sgvmain.cxx
+++ b/vcl/source/filter/sgvmain.cxx
@@ -803,7 +803,7 @@ bool SgfFilterSDrw( SvStream& rInp, SgfHeader&, SgfEntry&, GDIMetaFile& rMtf )
VirtualDevice aOutDev;
OutputDevice* pOutDev;
sal_uLong nStdPos;
- sal_uLong nZchPos;
+ sal_uLong nCharPos;
sal_uInt16 Num;
pOutDev=&aOutDev;
@@ -816,7 +816,7 @@ bool SgfFilterSDrw( SvStream& rInp, SgfHeader&, SgfEntry&, GDIMetaFile& rMtf )
} while (aPage.Next!=0L && !rInp.GetError());
// ShowMsg("Drawingpage(n)\n");
- nZchPos=rInp.Tell();
+ nCharPos=rInp.Tell();
ReadPageType( rInp, aPage );
rMtf.Record(pOutDev);
@@ -830,8 +830,8 @@ bool SgfFilterSDrw( SvStream& rInp, SgfHeader&, SgfEntry&, GDIMetaFile& rMtf )
}
ReadPageType( rInp, aPage );
if(Num==1 && aPage.nList!=0L) DrawObjkList( rInp,*pOutDev );
- rInp.Seek(nZchPos);
- nZchPos=rInp.Tell();
+ rInp.Seek(nCharPos);
+ nCharPos=rInp.Tell();
ReadPageType( rInp, aPage );
}
if (aPage.nList!=0L) DrawObjkList(rInp,*pOutDev );