diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-02-24 23:14:45 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-02-24 23:14:45 -0600 |
commit | 9aee4d1c9e5a0289f0d3d7b4a13046eab60e316e (patch) | |
tree | cc9004252e8832472e2314e03aeeb6df36d461ac /cppcanvas/source | |
parent | d9cd3dc9aa0424753c5ed277baa76d15511fef77 (diff) |
harmonize Tell() Seek() type.
Change-Id: I2e472aa0279d0763762d3c660207cd74da512626
Diffstat (limited to 'cppcanvas/source')
-rw-r--r-- | cppcanvas/source/mtfrenderer/emfplus.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cppcanvas/source/mtfrenderer/emfplus.cxx b/cppcanvas/source/mtfrenderer/emfplus.cxx index 95d8d34b6d29..12ccd753eee3 100644 --- a/cppcanvas/source/mtfrenderer/emfplus.cxx +++ b/cppcanvas/source/mtfrenderer/emfplus.cxx @@ -437,7 +437,7 @@ namespace cppcanvas s.ReadInt32( pathLength ); SAL_INFO("cppcanvas.emf", "EMF+\tpath length: " << pathLength); - sal_uInt32 pos = s.Tell (); + sal_Size pos = s.Tell (); sal_uInt32 pathHeader; sal_Int32 pathPoints, pathFlags; @@ -907,7 +907,7 @@ namespace cppcanvas { s.ReadInt32( customStartCapLen ); SAL_INFO("cppcanvas.emf", "EMF+\t\tcustomStartCapLen: " << customStartCapLen); - sal_uInt32 pos = s.Tell(); + sal_Size pos = s.Tell(); customStartCap = new EMFPCustomLineCap(); customStartCap->Read(s, rR); @@ -922,7 +922,7 @@ namespace cppcanvas { s.ReadInt32( customEndCapLen ); SAL_INFO("cppcanvas.emf", "EMF+\t\tcustomEndCapLen: " << customEndCapLen); - sal_uInt32 pos = s.Tell(); + sal_Size pos = s.Tell(); customEndCap = new EMFPCustomLineCap(); customEndCap->Read(s, rR); @@ -1598,7 +1598,7 @@ namespace cppcanvas while (length > 0) { sal_uInt16 type, flags; sal_uInt32 size, dataSize; - sal_uInt32 next; + sal_Size next; rMF.ReadUInt16( type ).ReadUInt16( flags ).ReadUInt32( size ).ReadUInt32( dataSize ); |