summaryrefslogtreecommitdiff
path: root/tools/source/generic/fract.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-09-25 05:38:24 +0200
committerNoel Grandin <noel@peralex.com>2014-09-26 15:25:40 +0200
commitc476a84abd83873ff807ac5943d882b43f72c90c (patch)
treec594f81bffb99ca7e65de1c25c13ef7f88df50b2 /tools/source/generic/fract.cxx
parentd46b16e1e495c153f70633d2da5c2bb0aba85cc9 (diff)
remove pointless comments
Change-Id: I8edfe830b8f6ca7f1809332870e06d1d286b90e8
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;