summaryrefslogtreecommitdiff
path: root/rsc
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-02-24 23:14:45 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-02-24 23:14:45 -0600
commit9aee4d1c9e5a0289f0d3d7b4a13046eab60e316e (patch)
treecc9004252e8832472e2314e03aeeb6df36d461ac /rsc
parentd9cd3dc9aa0424753c5ed277baa76d15511fef77 (diff)
harmonize Tell() Seek() type.
Change-Id: I2e472aa0279d0763762d3c660207cd74da512626
Diffstat (limited to 'rsc')
-rw-r--r--rsc/source/rsc/rsc.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/rsc/source/rsc/rsc.cxx b/rsc/source/rsc/rsc.cxx
index d3c979c2c9d0..06d8429079d3 100644
--- a/rsc/source/rsc/rsc.cxx
+++ b/rsc/source/rsc/rsc.cxx
@@ -863,7 +863,7 @@ void RscCompiler::PreprocessSrsFile( const RscCmdLine::OutputFile& rOutputFile,
if (aLine.indexOf(';') == -1)
{
- const sal_uInt32 nImgListStartPos = aIStm.Tell();
+ const sal_Size nImgListStartPos = aIStm.Tell();
do
{
@@ -909,7 +909,7 @@ void RscCompiler::PreprocessSrsFile( const RscCmdLine::OutputFile& rOutputFile,
}
}
- const sal_uInt32 nImgListEndPos = aIStm.Tell();
+ const sal_Size nImgListEndPos = aIStm.Tell();
aIStm.Seek( nImgListStartPos );
while( aIStm.Tell() < nImgListEndPos )
{