summaryrefslogtreecommitdiffstats
path: root/filter
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-30 11:06:04 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-10-01 06:57:19 +0000
commite209d115d41e25f5658dd52ae94ceb873b33013f (patch)
tree58b49bdcc833ec48bc8542f81b7918f50e07bb6d /filter
parentbasebmp: these headers are not used from other modules (diff)
downloadcore-e209d115d41e25f5658dd52ae94ceb873b33013f.tar.gz
core-e209d115d41e25f5658dd52ae94ceb873b33013f.zip
remove old standalone Sun bug numbers
Sun bug numbers without any accompanying text are completely useless. Fixed with git grep -lP '//\s*#\d+#\s*$' | xargs perl -i -ne'/\/\/\s*#\d+#\s*$/d or print' And then hand-checking the result to restore places where it deleted code. And then some more grepping and hand-editing to kill the others. Change-Id: Ia96ce4466db8bb8da363ebf41f0ae7f45f28bf29 Reviewed-on: https://gerrit.libreoffice.org/19023 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'filter')
-rw-r--r--filter/source/msfilter/escherex.cxx2
-rw-r--r--filter/source/msfilter/msdffimp.cxx3
-rw-r--r--filter/source/msfilter/svdfppt.cxx4
-rw-r--r--filter/source/svg/svgexport.cxx1
4 files changed, 3 insertions, 7 deletions
diff --git a/filter/source/msfilter/escherex.cxx b/filter/source/msfilter/escherex.cxx
index 642ef2944ceb..639414e6aaf4 100644
--- a/filter/source/msfilter/escherex.cxx
+++ b/filter/source/msfilter/escherex.cxx
@@ -1435,7 +1435,6 @@ bool EscherPropertyContainer::CreateGraphicProperties(
bool bMirrored = false;
bool bRotate = true;
bool bIsGraphicMtf = false;
- // #121074#
sal_Int16 nTransparency(0);
sal_Int16 nRed(0);
sal_Int16 nGreen(0);
@@ -1636,7 +1635,6 @@ bool EscherPropertyContainer::CreateGraphicProperties(
pGraphicAttr->SetMirrorFlags(BmpMirrorFlags::Horizontal);
}
- // #121074#
if(nTransparency)
{
pGraphicAttr->SetTransparency((nTransparency * 255) / 100);
diff --git a/filter/source/msfilter/msdffimp.cxx b/filter/source/msfilter/msdffimp.cxx
index 15f32258b4c5..344e33c740b8 100644
--- a/filter/source/msfilter/msdffimp.cxx
+++ b/filter/source/msfilter/msdffimp.cxx
@@ -4302,7 +4302,7 @@ SdrObject* SvxMSDffManager::ImportShape( const DffRecordHeader& rHd, SvStream& r
caller has not passed an own bounding ractangle. */
if ( rClientRect.IsEmpty() )
rClientRect = aObjData.aBoundRect;
- nGroupShapeFlags = aObjData.nSpFlags; // #73013#
+ nGroupShapeFlags = aObjData.nSpFlags;
}
else if ( ( aObjData.eShapeType != mso_sptNil ) || IsProperty( DFF_Prop_pVertices ) || bGraphic )
{
@@ -5752,7 +5752,6 @@ void SvxMSDffManager::CheckTxBxStoryChain()
if( pObj->nTxBxComp )
{
// group change?
- // #156763#
// the text id also contains an internal drawing container id
// to distinguish between text id of drawing objects in different
// drawing containers.
diff --git a/filter/source/msfilter/svdfppt.cxx b/filter/source/msfilter/svdfppt.cxx
index 23d0cb49e861..dc46f3dc839d 100644
--- a/filter/source/msfilter/svdfppt.cxx
+++ b/filter/source/msfilter/svdfppt.cxx
@@ -833,7 +833,7 @@ SdrObject* SdrEscherImport::ProcessObj( SvStream& rSt, DffObjData& rObjData, voi
}
sal_Int32 nFontDirection = GetPropertyValue( DFF_Prop_cdirFont, mso_cdir0 );
nTextRotationAngle -= nFontDirection * 9000;
- if ( ( nFontDirection == 1 ) || ( nFontDirection == 3 ) ) // #104546#
+ if ( ( nFontDirection == 1 ) || ( nFontDirection == 3 ) )
{
bVerticalText = !bVerticalText;
}
@@ -3997,7 +3997,7 @@ bool PPTParaSheet::Read( SdrPowerPointImport&
rIn.ReadUInt32( nVal32 ); // reading the tabulators
}
if ( nPMask & 0x200000 )
- rIn.ReadUInt16( maParaLevel[ nLevel ].mnBiDi ); // #88602#
+ rIn.ReadUInt16( maParaLevel[ nLevel ].mnBiDi );
}
nPMask >>= 22;
diff --git a/filter/source/svg/svgexport.cxx b/filter/source/svg/svgexport.cxx
index eec15ab0bc21..2bc4a5fbd9eb 100644
--- a/filter/source/svg/svgexport.cxx
+++ b/filter/source/svg/svgexport.cxx
@@ -568,7 +568,6 @@ bool SVGFilter::implExport( const Sequence< PropertyValue >& rDescriptor )
mbPresentation = Reference< XPresentationSupplier >( mxSrcDoc, UNO_QUERY ).is();
mpObjects = new ObjectMap;
- // #110680#
// mpSVGExport = new SVGExport( xDocHandler );
mpSVGExport = new SVGExport( xContext, xDocHandler, maFilterData );