diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/generic/fract.cxx | 2 | ||||
-rw-r--r-- | tools/source/generic/gen.cxx | 1 | ||||
-rw-r--r-- | tools/source/generic/poly.cxx | 1 |
3 files changed, 0 insertions, 4 deletions
diff --git a/tools/source/generic/fract.cxx b/tools/source/generic/fract.cxx index cfc68b12a583..198a42aa2639 100644 --- a/tools/source/generic/fract.cxx +++ b/tools/source/generic/fract.cxx @@ -486,7 +486,6 @@ bool operator > ( const Fraction& rVal1, const Fraction& rVal2 ) SvStream& ReadFraction( SvStream& rIStream, Fraction& rFract ) { - //fdo#39428 SvStream no longer supports operator>>(long&) sal_Int32 nTmp(0); rIStream.ReadInt32( nTmp ); rFract.nNumerator = nTmp; @@ -497,7 +496,6 @@ SvStream& ReadFraction( SvStream& rIStream, Fraction& rFract ) SvStream& WriteFraction( SvStream& rOStream, const Fraction& rFract ) { - //fdo#39428 SvStream no longer supports operator<<(long) rOStream.WriteInt32( rFract.nNumerator ); rOStream.WriteInt32( rFract.nDenominator ); return rOStream; diff --git a/tools/source/generic/gen.cxx b/tools/source/generic/gen.cxx index 23eb1f59ef2e..cc64f8fb3465 100644 --- a/tools/source/generic/gen.cxx +++ b/tools/source/generic/gen.cxx @@ -25,7 +25,6 @@ SvStream& ReadPair( SvStream& rIStream, Pair& rPair ) { DBG_ASSERTWARNING( rIStream.GetVersion(), "Pair::>> - Solar-Version not set on rIStream" ); - //39428 SvStream no longer supports operator>>(long&) sal_Int32 nTmpA(0), nTmpB(0); rIStream.ReadInt32( nTmpA ).ReadInt32( nTmpB ); rPair.nA = nTmpA; diff --git a/tools/source/generic/poly.cxx b/tools/source/generic/poly.cxx index c31f13c41c47..ce9aa918b89d 100644 --- a/tools/source/generic/poly.cxx +++ b/tools/source/generic/poly.cxx @@ -1559,7 +1559,6 @@ SvStream& ReadPolygon( SvStream& rIStream, Polygon& rPoly ) { for( i = 0; i < nPoints; i++ ) { - //fdo#39428 SvStream no longer supports operator>>(long&) sal_Int32 nTmpX(0), nTmpY(0); rIStream.ReadInt32( nTmpX ).ReadInt32( nTmpY ); rPoly.mpImplPolygon->mpPointAry[i].X() = nTmpX; |