summaryrefslogtreecommitdiff
path: root/tools/source/generic/fract.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tools/source/generic/fract.cxx')
-rw-r--r--tools/source/generic/fract.cxx2
1 files changed, 0 insertions, 2 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;