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 /editeng | |
parent | d46b16e1e495c153f70633d2da5c2bb0aba85cc9 (diff) |
remove pointless comments
Change-Id: I8edfe830b8f6ca7f1809332870e06d1d286b90e8
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/items/bulitem.cxx | 2 | ||||
-rw-r--r-- | editeng/source/items/frmitems.cxx | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/editeng/source/items/bulitem.cxx b/editeng/source/items/bulitem.cxx index 1ab78a7bec62..f04f35a70f0d 100644 --- a/editeng/source/items/bulitem.cxx +++ b/editeng/source/items/bulitem.cxx @@ -86,7 +86,6 @@ vcl::Font SvxBulletItem::CreateFont( SvStream& rStream, sal_uInt16 nVer ) if( nVer == 1 ) { - //#fdo39428 SvStream no longer supports operator>>(long&) sal_Int32 nHeight(0), nWidth(0); rStream.ReadInt32( nHeight ); rStream.ReadInt32( nWidth ); Size aSize( nWidth, nHeight ); aFont.SetSize( aSize ); @@ -145,7 +144,6 @@ SvxBulletItem::SvxBulletItem( SvStream& rStrm, sal_uInt16 _nWhich ) pGraphicObject = new GraphicObject( aBmp ); } - //#fdo39428 SvStream no longer supports operator>>(long&) sal_Int32 nTmp(0); rStrm.ReadInt32( nTmp ); nWidth = nTmp; rStrm.ReadUInt16( nStart ); diff --git a/editeng/source/items/frmitems.cxx b/editeng/source/items/frmitems.cxx index a66570758304..6c7b3cc55b7b 100644 --- a/editeng/source/items/frmitems.cxx +++ b/editeng/source/items/frmitems.cxx @@ -358,7 +358,6 @@ bool SvxSizeItem::GetPresentation SvStream& SvxSizeItem::Store( SvStream& rStrm , sal_uInt16 /*nItemVersion*/ ) const { - //#fdo39428 SvStream no longer supports operator<<(long) rStrm.WriteInt32( aSize.Width() ); rStrm.WriteInt32( aSize.Height() ); return rStrm; @@ -384,7 +383,6 @@ bool SvxSizeItem::HasMetrics() const SfxPoolItem* SvxSizeItem::Create( SvStream& rStrm, sal_uInt16 ) const { - //#fdo39428 SvStream no longer supports operator>>(long&) sal_Int32 nWidth(0), nHeight(0); rStrm.ReadInt32( nWidth ).ReadInt32( nHeight ); |