[Libreoffice-commits] core.git: vcl/source
Luc Castermans
luc.castermans at gmail.com
Sat Apr 5 04:27:50 PDT 2014
vcl/source/filter/sgvmain.cxx | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
New commits:
commit c7ec62e2e00f47749f6bc47b724dabd6e529f2ae
Author: Luc Castermans <luc.castermans at gmail.com>
Date: Sat Apr 5 13:23:54 2014 +0200
Translated variable name to English nZchPos => nCharPos
Change-Id: I8ad44252f980921f71259b1d62636a8f4979f0c0
Reviewed-on: https://gerrit.libreoffice.org/8869
Tested-by: David Tardon <dtardon at redhat.com>
Reviewed-by: David Tardon <dtardon at redhat.com>
diff --git a/vcl/source/filter/sgvmain.cxx b/vcl/source/filter/sgvmain.cxx
index a2e7c14..b2f4a41 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 );
More information about the Libreoffice-commits
mailing list