summaryrefslogtreecommitdiff
path: root/tools
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
parentd46b16e1e495c153f70633d2da5c2bb0aba85cc9 (diff)
remove pointless comments
Change-Id: I8edfe830b8f6ca7f1809332870e06d1d286b90e8
Diffstat (limited to 'tools')
-rw-r--r--tools/source/generic/fract.cxx2
-rw-r--r--tools/source/generic/gen.cxx1
-rw-r--r--tools/source/generic/poly.cxx1
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;