diff options
author | Noel Grandin <noel@peralex.com> | 2014-09-25 05:38:24 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-09-26 15:25:40 +0200 |
commit | c476a84abd83873ff807ac5943d882b43f72c90c (patch) | |
tree | c594f81bffb99ca7e65de1c25c13ef7f88df50b2 /svl/source | |
parent | d46b16e1e495c153f70633d2da5c2bb0aba85cc9 (diff) |
remove pointless comments
Change-Id: I8edfe830b8f6ca7f1809332870e06d1d286b90e8
Diffstat (limited to 'svl/source')
-rw-r--r-- | svl/source/items/cintitem.cxx | 2 | ||||
-rw-r--r-- | svl/source/items/slstitm.cxx | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/svl/source/items/cintitem.cxx b/svl/source/items/cintitem.cxx index dec43629472c..1b08883275cb 100644 --- a/svl/source/items/cintitem.cxx +++ b/svl/source/items/cintitem.cxx @@ -222,7 +222,6 @@ CntInt32Item::CntInt32Item(sal_uInt16 which, SvStream & rStream) : SfxPoolItem(which) , m_nValue(0) { - //fdo#39428 SvStream no longer supports operator>>(long&) rStream.ReadInt32( m_nValue ); } @@ -288,7 +287,6 @@ SfxPoolItem * CntInt32Item::Create(SvStream & rStream, sal_uInt16) const // virtual SvStream & CntInt32Item::Store(SvStream &rStream, sal_uInt16) const { - //fdo#39428 SvStream no longer supports operator<<(long) rStream.WriteInt32( m_nValue ); return rStream; } diff --git a/svl/source/items/slstitm.cxx b/svl/source/items/slstitm.cxx index 9459313b8948..5fd9450be63c 100644 --- a/svl/source/items/slstitm.cxx +++ b/svl/source/items/slstitm.cxx @@ -70,7 +70,6 @@ SfxStringListItem::SfxStringListItem( sal_uInt16 which, SvStream& rStream ) : SfxPoolItem( which ), pImp(NULL) { - //fdo#39428 SvStream no longer supports operator>>(long&) sal_Int32 nEntryCount; rStream.ReadInt32( nEntryCount ); @@ -173,7 +172,6 @@ SvStream& SfxStringListItem::Store( SvStream & rStream, sal_uInt16 ) const { if( !pImp ) { - //fdo#39428 SvStream no longer supports operator<<(long) rStream.WriteInt32( (sal_Int32) 0 ); return rStream; } |