[Libreoffice-commits] core.git: 9 commits - basic/source connectivity/source drawinglayer/source editeng/source embeddedobj/source filter/source framework/source package/source sax/qa scripting/source sdext/source sfx2/source starmath/source sw/source ucb/source uui/source writerperfect/source

Noel Grandin noel at peralex.com
Wed May 14 07:55:22 PDT 2014


 basic/source/basmgr/basmgr.cxx                          |    6 
 connectivity/source/drivers/mork/MPreparedStatement.cxx |    9 
 connectivity/source/drivers/mork/MResultSet.cxx         |    5 
 drawinglayer/source/dumper/EnhancedShapeDumper.cxx      |   24 -
 drawinglayer/source/dumper/EnhancedShapeDumper.hxx      |   24 -
 drawinglayer/source/dumper/XShapeDumper.cxx             |   20 -
 editeng/source/uno/unotext.cxx                          |    2 
 embeddedobj/source/commonembedding/embedobj.cxx         |    4 
 embeddedobj/source/commonembedding/persistence.cxx      |   10 
 embeddedobj/source/commonembedding/xfactory.cxx         |   12 
 embeddedobj/source/general/xcreator.cxx                 |   12 
 embeddedobj/source/inc/docholder.hxx                    |    2 
 embeddedobj/source/msole/oleembed.cxx                   |    8 
 embeddedobj/source/msole/olepersist.cxx                 |   12 
 embeddedobj/source/msole/olevisual.cxx                  |    6 
 embeddedobj/source/msole/xolefactory.cxx                |   10 
 filter/source/config/cache/filtercache.cxx              |    4 
 framework/source/fwe/xml/statusbardocumenthandler.cxx   |   12 
 framework/source/fwe/xml/toolboxdocumenthandler.cxx     |   18 -
 package/source/xstor/xstorage.cxx                       |   79 -----
 package/source/xstor/xstorage.hxx                       |    8 
 sax/qa/cppunit/test_converter.cxx                       |    4 
 scripting/source/stringresource/stringresource.cxx      |    4 
 sdext/source/minimizer/unodialog.cxx                    |   14 
 sdext/source/minimizer/unodialog.hxx                    |   14 
 sfx2/source/appl/app.cxx                                |    2 
 sfx2/source/appl/appinit.cxx                            |    2 
 sfx2/source/bastyp/fltfnc.cxx                           |    1 
 sfx2/source/doc/docfile.cxx                             |    6 
 sfx2/source/doc/objstor.cxx                             |   24 -
 sfx2/source/doc/sfxbasemodel.cxx                        |    2 
 starmath/source/document.cxx                            |   74 ----
 starmath/source/toolbox.cxx                             |    2 
 starmath/source/view.cxx                                |   51 ---
 sw/source/core/doc/docdraw.cxx                          |    2 
 sw/source/filter/ww8/docxattributeoutput.cxx            |    2 
 sw/source/filter/ww8/rtfattributeoutput.cxx             |  238 ----------------
 sw/source/filter/ww8/rtfexport.cxx                      |   36 --
 sw/source/filter/ww8/rtfexportfilter.cxx                |    2 
 sw/source/filter/ww8/rtfsdrexport.cxx                   |   20 -
 ucb/source/ucp/file/filnot.cxx                          |    3 
 ucb/source/ucp/file/filnot.hxx                          |    2 
 uui/source/iahndl-ssl.cxx                               |    2 
 uui/source/iahndl.cxx                                   |    2 
 uui/source/iahndl.hxx                                   |    2 
 writerperfect/source/draw/CDRImportFilter.cxx           |   10 
 writerperfect/source/draw/CMXImportFilter.cxx           |   10 
 writerperfect/source/draw/FreehandImportFilter.cxx      |   10 
 writerperfect/source/draw/ImportFilterBase.cxx          |    5 
 writerperfect/source/draw/MSPUBImportFilter.cxx         |   10 
 writerperfect/source/draw/VisioImportFilter.cxx         |   10 
 writerperfect/source/draw/WPGImportFilter.cxx           |   10 
 writerperfect/source/impress/KeynoteImportFilter.cxx    |   12 
 writerperfect/source/writer/ImportFilterBase.cxx        |    5 
 writerperfect/source/writer/WordPerfectImportFilter.cxx |    8 
 55 files changed, 89 insertions(+), 799 deletions(-)

New commits:
commit b2096deaff52f462e2df4e7bdc9816bb3604fb08
Author: Noel Grandin <noel at peralex.com>
Date:   Wed May 14 14:34:42 2014 +0200

    various loplugin:passsequencebyref
    
    Change-Id: Id1045a7f66b4fa10b6491587ba07246a31ceba72

diff --git a/basic/source/basmgr/basmgr.cxx b/basic/source/basmgr/basmgr.cxx
index 3e41094..3a53c0c 100644
--- a/basic/source/basmgr/basmgr.cxx
+++ b/basic/source/basmgr/basmgr.cxx
@@ -1835,7 +1835,7 @@ class DialogInfo_Impl : public DialogInfoHelper
     uno::Sequence< sal_Int8 > mData;
 
 public:
-    DialogInfo_Impl( const OUString& aName, uno::Sequence< sal_Int8 > Data )
+    DialogInfo_Impl( const OUString& aName, const uno::Sequence< sal_Int8 >& Data )
         : maName( aName ), mData( Data ) {}
 
     // Methods XStarBasicDialogInfo
@@ -2030,9 +2030,9 @@ uno::Sequence< sal_Int8 > implGetDialogData( SbxObject* pDialog )
     return aData;
 }
 
-SbxObject* implCreateDialog( uno::Sequence< sal_Int8 > aData )
+SbxObject* implCreateDialog( const uno::Sequence< sal_Int8 >& aData )
 {
-    sal_Int8* pData = aData.getArray();
+    sal_Int8* pData = const_cast< uno::Sequence< sal_Int8 >& >(aData).getArray();
     SvMemoryStream aMemStream( pData, aData.getLength(), STREAM_READ );
     SbxBase* pBase = SbxBase::Load( aMemStream );
     return dynamic_cast<SbxObject*>(pBase);
diff --git a/drawinglayer/source/dumper/EnhancedShapeDumper.cxx b/drawinglayer/source/dumper/EnhancedShapeDumper.cxx
index 9cbc6b8..681508e 100644
--- a/drawinglayer/source/dumper/EnhancedShapeDumper.cxx
+++ b/drawinglayer/source/dumper/EnhancedShapeDumper.cxx
@@ -466,7 +466,7 @@ void EnhancedShapeDumper::dumpTextRotateAngleAsAttribute(double aTextRotateAngle
     xmlTextWriterWriteFormatAttribute( xmlWriter, BAD_CAST("textRotateAngle"), "%f", aTextRotateAngle);
 }
 
-void EnhancedShapeDumper::dumpAdjustmentValuesAsElement(uno::Sequence< drawing::EnhancedCustomShapeAdjustmentValue> aAdjustmentValues)
+void EnhancedShapeDumper::dumpAdjustmentValuesAsElement(const uno::Sequence< drawing::EnhancedCustomShapeAdjustmentValue>& aAdjustmentValues)
 {
     xmlTextWriterStartElement(xmlWriter, BAD_CAST( "AdjustmentValues" ));
     sal_Int32 nLength = aAdjustmentValues.getLength();
@@ -547,7 +547,7 @@ void EnhancedShapeDumper::dumpPropertyValueAsElement(beans::PropertyValue aPrope
     xmlTextWriterEndElement( xmlWriter );
 }
 
-void EnhancedShapeDumper::dumpExtrusionAsElement(uno::Sequence< beans::PropertyValue > aExtrusion)
+void EnhancedShapeDumper::dumpExtrusionAsElement(const uno::Sequence< beans::PropertyValue >& aExtrusion)
 {
     xmlTextWriterStartElement(xmlWriter, BAD_CAST( "Extrusion" ));
     sal_Int32 nLength = aExtrusion.getLength();
@@ -558,7 +558,7 @@ void EnhancedShapeDumper::dumpExtrusionAsElement(uno::Sequence< beans::PropertyV
     xmlTextWriterEndElement( xmlWriter );
 }
 
-void EnhancedShapeDumper::dumpPathAsElement(uno::Sequence< beans::PropertyValue > aPath)
+void EnhancedShapeDumper::dumpPathAsElement(const uno::Sequence< beans::PropertyValue >& aPath)
 {
     xmlTextWriterStartElement(xmlWriter, BAD_CAST( "Path" ));
     sal_Int32 nLength = aPath.getLength();
@@ -569,7 +569,7 @@ void EnhancedShapeDumper::dumpPathAsElement(uno::Sequence< beans::PropertyValue
     xmlTextWriterEndElement( xmlWriter );
 }
 
-void EnhancedShapeDumper::dumpTextPathAsElement(uno::Sequence< beans::PropertyValue > aTextPath)
+void EnhancedShapeDumper::dumpTextPathAsElement(const uno::Sequence< beans::PropertyValue >& aTextPath)
 {
     xmlTextWriterStartElement(xmlWriter, BAD_CAST( "TextPath" ));
     sal_Int32 nLength = aTextPath.getLength();
@@ -580,7 +580,7 @@ void EnhancedShapeDumper::dumpTextPathAsElement(uno::Sequence< beans::PropertyVa
     xmlTextWriterEndElement( xmlWriter );
 }
 
-void EnhancedShapeDumper::dumpEquationsAsElement(uno::Sequence< OUString > aEquations)
+void EnhancedShapeDumper::dumpEquationsAsElement(const uno::Sequence< OUString >& aEquations)
 {
     xmlTextWriterStartElement(xmlWriter, BAD_CAST( "Equations" ));
     sal_Int32 nLength = aEquations.getLength();
@@ -595,7 +595,7 @@ void EnhancedShapeDumper::dumpEquationsAsElement(uno::Sequence< OUString > aEqua
 // PropertyValues specifies a sequence of PropertyValue instances.
 // so in this case it's a Sequence of a Sequence of a PropertyValue instances.
 // Welcome to Sequenception again.
-void EnhancedShapeDumper::dumpHandlesAsElement(uno::Sequence< beans::PropertyValues > aHandles)
+void EnhancedShapeDumper::dumpHandlesAsElement(const uno::Sequence< beans::PropertyValues >& aHandles)
 {
     xmlTextWriterStartElement(xmlWriter, BAD_CAST( "Handles" ));
     sal_Int32 nSequenceLength = aHandles.getLength();
@@ -903,7 +903,7 @@ void EnhancedShapeDumper::dumpEnhancedCustomShapePathService(uno::Reference< bea
     }
 }
 
-void EnhancedShapeDumper::dumpCoordinatesAsElement(uno::Sequence< drawing::EnhancedCustomShapeParameterPair > aCoordinates)
+void EnhancedShapeDumper::dumpCoordinatesAsElement(const uno::Sequence< drawing::EnhancedCustomShapeParameterPair >& aCoordinates)
 {
     xmlTextWriterStartElement(xmlWriter, BAD_CAST( "Coordinates" ));
     sal_Int32 nLength = aCoordinates.getLength();
@@ -916,7 +916,7 @@ void EnhancedShapeDumper::dumpCoordinatesAsElement(uno::Sequence< drawing::Enhan
     xmlTextWriterEndElement( xmlWriter );
 }
 
-void EnhancedShapeDumper::dumpSegmentsAsElement(uno::Sequence< drawing::EnhancedCustomShapeSegment > aSegments)
+void EnhancedShapeDumper::dumpSegmentsAsElement(const uno::Sequence< drawing::EnhancedCustomShapeSegment >& aSegments)
 {
     xmlTextWriterStartElement(xmlWriter, BAD_CAST( "Segments" ));
     sal_Int32 nLength = aSegments.getLength();
@@ -942,7 +942,7 @@ void EnhancedShapeDumper::dumpStretchYAsAttribute(sal_Int32 aStretchY)
     xmlTextWriterWriteFormatAttribute(xmlWriter, BAD_CAST("stretchY"), "%" SAL_PRIdINT32, aStretchY);
 }
 
-void EnhancedShapeDumper::dumpTextFramesAsElement(uno::Sequence< drawing::EnhancedCustomShapeTextFrame > aTextFrames)
+void EnhancedShapeDumper::dumpTextFramesAsElement(const uno::Sequence< drawing::EnhancedCustomShapeTextFrame >& aTextFrames)
 {
     xmlTextWriterStartElement(xmlWriter, BAD_CAST( "TextFrames" ));
     sal_Int32 nLength = aTextFrames.getLength();
@@ -963,7 +963,7 @@ void EnhancedShapeDumper::dumpTextFramesAsElement(uno::Sequence< drawing::Enhanc
     xmlTextWriterEndElement( xmlWriter );
 }
 
-void EnhancedShapeDumper::dumpGluePointsAsElement(uno::Sequence< drawing::EnhancedCustomShapeParameterPair > aGluePoints)
+void EnhancedShapeDumper::dumpGluePointsAsElement(const uno::Sequence< drawing::EnhancedCustomShapeParameterPair >& aGluePoints)
 {
     xmlTextWriterStartElement(xmlWriter, BAD_CAST( "GluePoints" ));
     sal_Int32 nLength = aGluePoints.getLength();
@@ -976,7 +976,7 @@ void EnhancedShapeDumper::dumpGluePointsAsElement(uno::Sequence< drawing::Enhanc
     xmlTextWriterEndElement( xmlWriter );
 }
 
-void EnhancedShapeDumper::dumpGluePointLeavingDirectionsAsElement(uno::Sequence< double > aGluePointLeavingDirections)
+void EnhancedShapeDumper::dumpGluePointLeavingDirectionsAsElement(const uno::Sequence< double >& aGluePointLeavingDirections)
 {
     xmlTextWriterStartElement(xmlWriter, BAD_CAST( "GluePointLeavingDirections" ));
     sal_Int32 nLength = aGluePointLeavingDirections.getLength();
@@ -1016,7 +1016,7 @@ void EnhancedShapeDumper::dumpTextPathAllowedAsAttribute(bool bTextPathAllowed)
         xmlTextWriterWriteFormatAttribute( xmlWriter, BAD_CAST("textPathAllowed"), "%s", "false");
 }
 
-void EnhancedShapeDumper::dumpSubViewSizeAsElement(uno::Sequence< awt::Size > aSubViewSize)
+void EnhancedShapeDumper::dumpSubViewSizeAsElement(const uno::Sequence< awt::Size >& aSubViewSize)
 {
     xmlTextWriterStartElement(xmlWriter, BAD_CAST( "SubViewSize" ));
     sal_Int32 nLength = aSubViewSize.getLength();
diff --git a/drawinglayer/source/dumper/EnhancedShapeDumper.hxx b/drawinglayer/source/dumper/EnhancedShapeDumper.hxx
index 9a8f6b9..e47750e 100644
--- a/drawinglayer/source/dumper/EnhancedShapeDumper.hxx
+++ b/drawinglayer/source/dumper/EnhancedShapeDumper.hxx
@@ -80,12 +80,12 @@ public:
     void dumpMirroredXAsAttribute(bool bMirroredX); // also used in EnhancedCustomShapeHandle
     void dumpMirroredYAsAttribute(bool bMirroredY); // also used in EnhancedCustomShapeHandle
     void dumpTextRotateAngleAsAttribute(double aTextRotateAngle);
-    void dumpAdjustmentValuesAsElement(com::sun::star::uno::Sequence< com::sun::star::drawing::EnhancedCustomShapeAdjustmentValue> aAdjustmentValues);
-    void dumpExtrusionAsElement(com::sun::star::uno::Sequence< com::sun::star::beans::PropertyValue > aExtrusion);
-    void dumpPathAsElement(com::sun::star::uno::Sequence< com::sun::star::beans::PropertyValue > aPath);
-    void dumpTextPathAsElement(com::sun::star::uno::Sequence< com::sun::star::beans::PropertyValue > aTextPath);
-    void dumpEquationsAsElement(com::sun::star::uno::Sequence< OUString > aEquations);
-    void dumpHandlesAsElement(com::sun::star::uno::Sequence< com::sun::star::beans::PropertyValues > aHandles);
+    void dumpAdjustmentValuesAsElement(const com::sun::star::uno::Sequence< com::sun::star::drawing::EnhancedCustomShapeAdjustmentValue>& aAdjustmentValues);
+    void dumpExtrusionAsElement(const com::sun::star::uno::Sequence< com::sun::star::beans::PropertyValue >& aExtrusion);
+    void dumpPathAsElement(const com::sun::star::uno::Sequence< com::sun::star::beans::PropertyValue >& aPath);
+    void dumpTextPathAsElement(const com::sun::star::uno::Sequence< com::sun::star::beans::PropertyValue >& aTextPath);
+    void dumpEquationsAsElement(const com::sun::star::uno::Sequence< OUString >& aEquations);
+    void dumpHandlesAsElement(const com::sun::star::uno::Sequence< com::sun::star::beans::PropertyValues >& aHandles);
 
     // EnhancedCustomShapeHandle.idl
     void dumpEnhancedCustomShapeHandleService(com::sun::star::uno::Reference< com::sun::star::beans::XPropertySet > xPropSet);
@@ -105,18 +105,18 @@ public:
 
     // EnhancedCustomShapePath.idl
     void dumpEnhancedCustomShapePathService(com::sun::star::uno::Reference< com::sun::star::beans::XPropertySet > xPropSet);
-    void dumpCoordinatesAsElement(com::sun::star::uno::Sequence< com::sun::star::drawing::EnhancedCustomShapeParameterPair > aCoordinates);
-    void dumpSegmentsAsElement(com::sun::star::uno::Sequence< com::sun::star::drawing::EnhancedCustomShapeSegment > aSegments);
+    void dumpCoordinatesAsElement(const com::sun::star::uno::Sequence< com::sun::star::drawing::EnhancedCustomShapeParameterPair >& aCoordinates);
+    void dumpSegmentsAsElement(const com::sun::star::uno::Sequence< com::sun::star::drawing::EnhancedCustomShapeSegment >& aSegments);
     void dumpStretchXAsAttribute(sal_Int32 aStretchX);
     void dumpStretchYAsAttribute(sal_Int32 aStretchY);
-    void dumpTextFramesAsElement(com::sun::star::uno::Sequence< com::sun::star::drawing::EnhancedCustomShapeTextFrame > aTextFrames);
-    void dumpGluePointsAsElement(com::sun::star::uno::Sequence< com::sun::star::drawing::EnhancedCustomShapeParameterPair > aGluePoints);
-    void dumpGluePointLeavingDirectionsAsElement(com::sun::star::uno::Sequence< double > aGluePointLeavingDirections);
+    void dumpTextFramesAsElement(const com::sun::star::uno::Sequence< com::sun::star::drawing::EnhancedCustomShapeTextFrame >& aTextFrames);
+    void dumpGluePointsAsElement(const com::sun::star::uno::Sequence< com::sun::star::drawing::EnhancedCustomShapeParameterPair >& aGluePoints);
+    void dumpGluePointLeavingDirectionsAsElement(const com::sun::star::uno::Sequence< double >& aGluePointLeavingDirections);
     void dumpGluePointTypeAsAttribute(sal_Int32 aGluePointType);
     void dumpExtrusionAllowedAsAttribute(bool bExtrusionAllowed);
     void dumpConcentricGradientFillAllowedAsAttribute(bool bConcentricGradientFillAllowed);
     void dumpTextPathAllowedAsAttribute(bool bTextPathAllowed);
-    void dumpSubViewSizeAsElement(com::sun::star::uno::Sequence< com::sun::star::awt::Size > aSubViewSize);
+    void dumpSubViewSizeAsElement(const com::sun::star::uno::Sequence< com::sun::star::awt::Size >& aSubViewSize);
 
     // EnhancedCustomShapePath.idl
     void dumpEnhancedCustomShapeTextPathService(com::sun::star::uno::Reference< com::sun::star::beans::XPropertySet > xPropSet);
diff --git a/drawinglayer/source/dumper/XShapeDumper.cxx b/drawinglayer/source/dumper/XShapeDumper.cxx
index 639ec73..c0d1979 100644
--- a/drawinglayer/source/dumper/XShapeDumper.cxx
+++ b/drawinglayer/source/dumper/XShapeDumper.cxx
@@ -36,7 +36,7 @@ namespace {
 // auxiliary functions
 void dumpGradientProperty(com::sun::star::awt::Gradient aGradient, xmlTextWriterPtr xmlWriter);
 void dumpPolyPolygonBezierCoords(com::sun::star::drawing::PolyPolygonBezierCoords aPolyPolygonBezierCoords, xmlTextWriterPtr xmlWriter);
-void dumpPointSequenceSequence(com::sun::star::drawing::PointSequenceSequence aPointSequenceSequence, uno::Sequence<uno::Sequence<drawing::PolygonFlags> >*, xmlTextWriterPtr xmlWriter);
+void dumpPointSequenceSequence(const com::sun::star::drawing::PointSequenceSequence& aPointSequenceSequence, uno::Sequence<uno::Sequence<drawing::PolygonFlags> >*, xmlTextWriterPtr xmlWriter);
 void dumpPropertyValueAsElement(const beans::PropertyValue& rPropertyValue, xmlTextWriterPtr xmlWriter);
 
 // FillProperties.idl
@@ -82,8 +82,8 @@ void dumpLineEndWidthAsAttribute(sal_Int32 aLineEndWidth, xmlTextWriterPtr xmlWr
 
 // PolyPolygonDescriptor.idl
 void dumpPolygonKindAsAttribute(com::sun::star::drawing::PolygonKind ePolygonKind, xmlTextWriterPtr xmlWriter);
-void dumpPolyPolygonAsElement(com::sun::star::drawing::PointSequenceSequence aPolyPolygon, xmlTextWriterPtr xmlWriter);
-void dumpGeometryAsElement(com::sun::star::drawing::PointSequenceSequence aGeometry, xmlTextWriterPtr xmlWriter);
+void dumpPolyPolygonAsElement(const com::sun::star::drawing::PointSequenceSequence& aPolyPolygon, xmlTextWriterPtr xmlWriter);
+void dumpGeometryAsElement(const com::sun::star::drawing::PointSequenceSequence& aGeometry, xmlTextWriterPtr xmlWriter);
 
 // CharacterProperties.idl
 void dumpCharHeightAsAttribute(float fHeight, xmlTextWriterPtr xmlWriter);
@@ -134,12 +134,12 @@ void dumpHomogenMatrixLine3(com::sun::star::drawing::HomogenMatrixLine3 aLine, x
 void dumpTransformationAsElement(com::sun::star::drawing::HomogenMatrix3 aTransformation, xmlTextWriterPtr xmlWriter);
 void dumpNavigationOrderAsAttribute(sal_Int32 aNavigationOrder, xmlTextWriterPtr xmlWriter);
 void dumpHyperlinkAsAttribute(const OUString& sHyperlink, xmlTextWriterPtr xmlWriter);
-void dumpInteropGrabBagAsElement(uno::Sequence< beans::PropertyValue> aInteropGrabBag, xmlTextWriterPtr xmlWriter);
+void dumpInteropGrabBagAsElement(const uno::Sequence< beans::PropertyValue>& aInteropGrabBag, xmlTextWriterPtr xmlWriter);
 
 // CustomShape.idl
 void dumpCustomShapeEngineAsAttribute(const OUString& sCustomShapeEngine, xmlTextWriterPtr xmlWriter);
 void dumpCustomShapeDataAsAttribute(const OUString& sCustomShapeData, xmlTextWriterPtr xmlWriter);
-void dumpCustomShapeGeometryAsElement(com::sun::star::uno::Sequence< com::sun::star::beans::PropertyValue> aCustomShapeGeometry, xmlTextWriterPtr xmlWriter);
+void dumpCustomShapeGeometryAsElement(const com::sun::star::uno::Sequence< com::sun::star::beans::PropertyValue>& aCustomShapeGeometry, xmlTextWriterPtr xmlWriter);
 void dumpCustomShapeReplacementURLAsAttribute(const OUString& sCustomShapeReplacementURL, xmlTextWriterPtr xmlWriter);
 
 // XShape.idl
@@ -623,7 +623,7 @@ void dumpPolygonKindAsAttribute(drawing::PolygonKind ePolygonKind, xmlTextWriter
     }
 }
 
-void dumpPointSequenceSequence(drawing::PointSequenceSequence aPointSequenceSequence, uno::Sequence<uno::Sequence< drawing::PolygonFlags > >* pFlags, xmlTextWriterPtr xmlWriter)
+void dumpPointSequenceSequence(const drawing::PointSequenceSequence& aPointSequenceSequence, uno::Sequence<uno::Sequence< drawing::PolygonFlags > >* pFlags, xmlTextWriterPtr xmlWriter)
 {
     // LibreOffice proudly presents - The Sequenception
     uno::Sequence<uno::Sequence< awt::Point > > pointSequenceSequence = aPointSequenceSequence;
@@ -673,14 +673,14 @@ void dumpPointSequenceSequence(drawing::PointSequenceSequence aPointSequenceSequ
     }
 }
 
-void dumpPolyPolygonAsElement(drawing::PointSequenceSequence aPolyPolygon, xmlTextWriterPtr xmlWriter)
+void dumpPolyPolygonAsElement(const drawing::PointSequenceSequence& aPolyPolygon, xmlTextWriterPtr xmlWriter)
 {
     xmlTextWriterStartElement(xmlWriter, BAD_CAST( "PolyPolygon" ));
     dumpPointSequenceSequence(aPolyPolygon, NULL, xmlWriter);
     xmlTextWriterEndElement( xmlWriter );
 }
 
-void dumpGeometryAsElement(drawing::PointSequenceSequence aGeometry, xmlTextWriterPtr xmlWriter)
+void dumpGeometryAsElement(const drawing::PointSequenceSequence& aGeometry, xmlTextWriterPtr xmlWriter)
 {
     xmlTextWriterStartElement(xmlWriter, BAD_CAST( "Geometry" ));
     dumpPointSequenceSequence(aGeometry, NULL, xmlWriter);
@@ -1059,7 +1059,7 @@ void dumpHyperlinkAsAttribute(const OUString& sHyperlink, xmlTextWriterPtr xmlWr
         OUStringToOString(sHyperlink, RTL_TEXTENCODING_UTF8).getStr());
 }
 
-void dumpInteropGrabBagAsElement(uno::Sequence< beans::PropertyValue> aInteropGrabBag, xmlTextWriterPtr xmlWriter)
+void dumpInteropGrabBagAsElement(const uno::Sequence< beans::PropertyValue>& aInteropGrabBag, xmlTextWriterPtr xmlWriter)
 {
     xmlTextWriterStartElement(xmlWriter, BAD_CAST( "InteropGrabBag" ));
 
@@ -1197,7 +1197,7 @@ void dumpPropertyValueAsElement(const beans::PropertyValue& rPropertyValue, xmlT
     xmlTextWriterEndElement( xmlWriter );
 }
 
-void dumpCustomShapeGeometryAsElement(uno::Sequence< beans::PropertyValue> aCustomShapeGeometry, xmlTextWriterPtr xmlWriter)
+void dumpCustomShapeGeometryAsElement(const uno::Sequence< beans::PropertyValue>& aCustomShapeGeometry, xmlTextWriterPtr xmlWriter)
 {
     xmlTextWriterStartElement(xmlWriter, BAD_CAST( "CustomShapeGeometry" ));
 
diff --git a/editeng/source/uno/unotext.cxx b/editeng/source/uno/unotext.cxx
index c412272..6cfad26 100644
--- a/editeng/source/uno/unotext.cxx
+++ b/editeng/source/uno/unotext.cxx
@@ -2042,7 +2042,7 @@ void SAL_CALL SvxUnoTextBase::moveTextRange( const uno::Reference< text::XTextRa
 
 void SvxPropertyValuesToItemSet(
         SfxItemSet &rItemSet,
-        const uno::Sequence< beans::PropertyValue > rPropertyVaules,
+        const uno::Sequence< beans::PropertyValue >& rPropertyVaules,
         const SfxItemPropertySet *pPropSet,
         SvxTextForwarder *pForwarder /*needed for WID_NUMLEVEL*/,
         sal_Int32 nPara /*needed for WID_NUMLEVEL*/)
diff --git a/embeddedobj/source/inc/docholder.hxx b/embeddedobj/source/inc/docholder.hxx
index 8ab0309..26e513b 100644
--- a/embeddedobj/source/inc/docholder.hxx
+++ b/embeddedobj/source/inc/docholder.hxx
@@ -136,7 +136,7 @@ public:
 
     OUString GetContainerName() const { return m_aContainerName; }
 
-    void SetOutplaceFrameProperties( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > aProps )
+    void SetOutplaceFrameProperties( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aProps )
         { m_aOutplaceFrameProps = aProps; }
 
     void PlaceFrame( const ::com::sun::star::awt::Rectangle& aNewRect );
diff --git a/framework/source/fwe/xml/statusbardocumenthandler.cxx b/framework/source/fwe/xml/statusbardocumenthandler.cxx
index 0b706ed..ca170df 100644
--- a/framework/source/fwe/xml/statusbardocumenthandler.cxx
+++ b/framework/source/fwe/xml/statusbardocumenthandler.cxx
@@ -89,12 +89,12 @@ static const char ITEM_DESCRIPTOR_WIDTH[]       = "Width";
 static const char ITEM_DESCRIPTOR_TYPE[]        = "Type";
 
 static void ExtractStatusbarItemParameters(
-    const Sequence< PropertyValue > rProp,
-    OUString&                       rCommandURL,
-    OUString&                       rHelpURL,
-    sal_Int16&                      rOffset,
-    sal_Int16&                      rStyle,
-    sal_Int16&                      rWidth )
+    const Sequence< PropertyValue >& rProp,
+    OUString&                        rCommandURL,
+    OUString&                        rHelpURL,
+    sal_Int16&                       rOffset,
+    sal_Int16&                       rStyle,
+    sal_Int16&                       rWidth )
 {
     for ( sal_Int32 i = 0; i < rProp.getLength(); i++ )
     {
diff --git a/framework/source/fwe/xml/toolboxdocumenthandler.cxx b/framework/source/fwe/xml/toolboxdocumenthandler.cxx
index 3c9038c..639d339 100644
--- a/framework/source/fwe/xml/toolboxdocumenthandler.cxx
+++ b/framework/source/fwe/xml/toolboxdocumenthandler.cxx
@@ -56,15 +56,15 @@ static const char ITEM_DESCRIPTOR_STYLE[]       = "Style";
 static const char ITEM_DESCRIPTOR_VISIBLE[]     = "IsVisible";
 static const char ITEM_DESCRIPTOR_WIDTH[]       = "Width";
 
-static void ExtractToolbarParameters( const Sequence< PropertyValue > rProp,
-                                      OUString&                       rCommandURL,
-                                      OUString&                       rLabel,
-                                      OUString&                       rHelpURL,
-                                      OUString&                       rTooltip,
-                                      sal_Int16&                      rStyle,
-                                      sal_Int16&                      rWidth,
-                                      bool&                       rVisible,
-                                      sal_Int16&                      rType )
+static void ExtractToolbarParameters( const Sequence< PropertyValue >& rProp,
+                                      OUString&                        rCommandURL,
+                                      OUString&                        rLabel,
+                                      OUString&                        rHelpURL,
+                                      OUString&                        rTooltip,
+                                      sal_Int16&                       rStyle,
+                                      sal_Int16&                       rWidth,
+                                      bool&                            rVisible,
+                                      sal_Int16&                       rType )
 {
     for ( sal_Int32 i = 0; i < rProp.getLength(); i++ )
     {
diff --git a/package/source/xstor/xstorage.cxx b/package/source/xstor/xstorage.cxx
index b9ddeef..29fdb60 100644
--- a/package/source/xstor/xstorage.cxx
+++ b/package/source/xstor/xstorage.cxx
@@ -184,7 +184,7 @@ SotElement_Impl::~SotElement_Impl()
 // most of properties are holt by the storage but are not used
 OStorage_Impl::OStorage_Impl(   uno::Reference< io::XInputStream > xInputStream,
                                 sal_Int32 nMode,
-                                uno::Sequence< beans::PropertyValue > xProperties,
+                                const uno::Sequence< beans::PropertyValue >& xProperties,
                                 uno::Reference< uno::XComponentContext > xContext,
                                 sal_Int32 nStorageType )
 : m_rMutexRef( new SotMutexHolder )
@@ -224,7 +224,7 @@ OStorage_Impl::OStorage_Impl(   uno::Reference< io::XInputStream > xInputStream,
 // most of properties are holt by the storage but are not used
 OStorage_Impl::OStorage_Impl(   uno::Reference< io::XStream > xStream,
                                 sal_Int32 nMode,
-                                uno::Sequence< beans::PropertyValue > xProperties,
+                                const uno::Sequence< beans::PropertyValue >& xProperties,
                                 uno::Reference< uno::XComponentContext > xContext,
                                 sal_Int32 nStorageType )
 : m_rMutexRef( new SotMutexHolder )
@@ -1880,7 +1880,7 @@ void OStorage_Impl::CommitRelInfo( const uno::Reference< container::XNameContain
 
 OStorage::OStorage( uno::Reference< io::XInputStream > xInputStream,
                     sal_Int32 nMode,
-                    uno::Sequence< beans::PropertyValue > xProperties,
+                    const uno::Sequence< beans::PropertyValue >& xProperties,
                     uno::Reference< uno::XComponentContext > xContext,
                     sal_Int32 nStorageType )
 : m_pImpl( new OStorage_Impl( xInputStream, nMode, xProperties, xContext, nStorageType ) )
@@ -1891,7 +1891,7 @@ OStorage::OStorage( uno::Reference< io::XInputStream > xInputStream,
 
 OStorage::OStorage( uno::Reference< io::XStream > xStream,
                     sal_Int32 nMode,
-                    uno::Sequence< beans::PropertyValue > xProperties,
+                    const uno::Sequence< beans::PropertyValue >& xProperties,
                     uno::Reference< uno::XComponentContext > xContext,
                     sal_Int32 nStorageType )
 : m_pImpl( new OStorage_Impl( xStream, nMode, xProperties, xContext, nStorageType ) )
diff --git a/package/source/xstor/xstorage.hxx b/package/source/xstor/xstorage.hxx
index 298341d..00d4a0b 100644
--- a/package/source/xstor/xstorage.hxx
+++ b/package/source/xstor/xstorage.hxx
@@ -181,13 +181,13 @@ struct OStorage_Impl
     // Constructors
     OStorage_Impl(  ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > xInputStream,
                     sal_Int32 nMode,
-                    ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > xProperties,
+                    const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& xProperties,
                     ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > xContext,
                     sal_Int32 nStorageType );
 
     OStorage_Impl(  ::com::sun::star::uno::Reference< ::com::sun::star::io::XStream > xStream,
                     sal_Int32 nMode,
-                    ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > xProperties,
+                    const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& xProperties,
                     ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > xContext,
                     sal_Int32 nStorageType );
 
@@ -314,13 +314,13 @@ public:
 
     OStorage(   ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > xInputStream,
                 sal_Int32 nMode,
-                ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > xProperties,
+                const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& xProperties,
                 ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > xContext,
                 sal_Int32 nStorageType );
 
     OStorage(   ::com::sun::star::uno::Reference< ::com::sun::star::io::XStream > xStream,
                 sal_Int32 nMode,
-                ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > xProperties,
+                const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& xProperties,
                 ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > xContext,
                 sal_Int32 nStorageType );
 
diff --git a/sax/qa/cppunit/test_converter.cxx b/sax/qa/cppunit/test_converter.cxx
index 3fad00b..968292a 100644
--- a/sax/qa/cppunit/test_converter.cxx
+++ b/sax/qa/cppunit/test_converter.cxx
@@ -643,7 +643,7 @@ void ConverterTest::testNumber()
     doTestNumberToString("0", -0);
 }
 
-void doTestEncodeBase64(char const*const pis, const uno::Sequence<sal_Int8> aPass)
+void doTestEncodeBase64(char const*const pis, const uno::Sequence<sal_Int8>& aPass)
 {
     OUString const is(OUString::createFromAscii(pis));
     OUStringBuffer buf;
@@ -652,7 +652,7 @@ void doTestEncodeBase64(char const*const pis, const uno::Sequence<sal_Int8> aPas
     CPPUNIT_ASSERT_EQUAL(is, buf.makeStringAndClear());
 }
 
-void doTestDecodeBase64(const uno::Sequence<sal_Int8> aPass, char const*const pis)
+void doTestDecodeBase64(const uno::Sequence<sal_Int8>& aPass, char const*const pis)
 {
     OUString const is(OUString::createFromAscii(pis));
     uno::Sequence< sal_Int8 > tempSequence;
diff --git a/scripting/source/stringresource/stringresource.cxx b/scripting/source/stringresource/stringresource.cxx
index 910a165..983bd2c 100644
--- a/scripting/source/stringresource/stringresource.cxx
+++ b/scripting/source/stringresource/stringresource.cxx
@@ -1473,7 +1473,7 @@ class BinaryInput
     sal_Int32                               m_nSize;
 
 public:
-    BinaryInput( Sequence< ::sal_Int8 > aData, Reference< XMultiComponentFactory > xMCF,
+    BinaryInput( const Sequence< ::sal_Int8 >& aData, Reference< XMultiComponentFactory > xMCF,
         Reference< XComponentContext > xContext );
 
     Reference< io::XInputStream > getInputStreamForSection( sal_Int32 nSize );
@@ -1488,7 +1488,7 @@ public:
     OUString readString( void );
 };
 
-BinaryInput::BinaryInput( Sequence< ::sal_Int8 > aData, Reference< XMultiComponentFactory > xMCF,
+BinaryInput::BinaryInput( const Sequence< ::sal_Int8 >& aData, Reference< XMultiComponentFactory > xMCF,
     Reference< XComponentContext > xContext )
         : m_aData( aData )
         , m_xMCF( xMCF )
diff --git a/sdext/source/minimizer/unodialog.cxx b/sdext/source/minimizer/unodialog.cxx
index 00c41a0..b099136 100644
--- a/sdext/source/minimizer/unodialog.cxx
+++ b/sdext/source/minimizer/unodialog.cxx
@@ -167,7 +167,7 @@ Reference< XButton > UnoDialog::insertButton( const OUString& rName, Reference<
 
 
 
-Reference< XFixedText > UnoDialog::insertFixedText( const OUString& rName, const Sequence< OUString > rPropertyNames, const Sequence< Any > rPropertyValues )
+Reference< XFixedText > UnoDialog::insertFixedText( const OUString& rName, const Sequence< OUString >& rPropertyNames, const Sequence< Any >& rPropertyValues )
 {
     Reference< XFixedText > xFixedText;
     try
@@ -185,7 +185,7 @@ Reference< XFixedText > UnoDialog::insertFixedText( const OUString& rName, const
 
 
 
-Reference< XCheckBox > UnoDialog::insertCheckBox( const OUString& rName, const Sequence< OUString > rPropertyNames, const Sequence< Any > rPropertyValues )
+Reference< XCheckBox > UnoDialog::insertCheckBox( const OUString& rName, const Sequence< OUString >& rPropertyNames, const Sequence< Any >& rPropertyValues )
 {
     Reference< XCheckBox > xCheckBox;
     try
@@ -203,7 +203,7 @@ Reference< XCheckBox > UnoDialog::insertCheckBox( const OUString& rName, const S
 
 
 
-Reference< XControl > UnoDialog::insertFormattedField( const OUString& rName, const Sequence< OUString > rPropertyNames, const Sequence< Any > rPropertyValues )
+Reference< XControl > UnoDialog::insertFormattedField( const OUString& rName, const Sequence< OUString >& rPropertyNames, const Sequence< Any >& rPropertyValues )
 {
     Reference< XControl > xControl;
     try
@@ -221,7 +221,7 @@ Reference< XControl > UnoDialog::insertFormattedField( const OUString& rName, co
 
 
 
-Reference< XComboBox > UnoDialog::insertComboBox( const OUString& rName, const Sequence< OUString > rPropertyNames, const Sequence< Any > rPropertyValues )
+Reference< XComboBox > UnoDialog::insertComboBox( const OUString& rName, const Sequence< OUString >& rPropertyNames, const Sequence< Any >& rPropertyValues )
 {
     Reference< XComboBox > xControl;
     try
@@ -239,7 +239,7 @@ Reference< XComboBox > UnoDialog::insertComboBox( const OUString& rName, const S
 
 
 
-Reference< XRadioButton > UnoDialog::insertRadioButton( const OUString& rName, const Sequence< OUString > rPropertyNames, const Sequence< Any > rPropertyValues )
+Reference< XRadioButton > UnoDialog::insertRadioButton( const OUString& rName, const Sequence< OUString >& rPropertyNames, const Sequence< Any >& rPropertyValues )
 {
     Reference< XRadioButton > xControl;
     try
@@ -257,7 +257,7 @@ Reference< XRadioButton > UnoDialog::insertRadioButton( const OUString& rName, c
 
 
 
-Reference< XListBox > UnoDialog::insertListBox( const OUString& rName, const Sequence< OUString > rPropertyNames, const Sequence< Any > rPropertyValues )
+Reference< XListBox > UnoDialog::insertListBox( const OUString& rName, const Sequence< OUString >& rPropertyNames, const Sequence< Any >& rPropertyValues )
 {
     Reference< XListBox > xControl;
     try
@@ -275,7 +275,7 @@ Reference< XListBox > UnoDialog::insertListBox( const OUString& rName, const Seq
 
 
 
-Reference< XControl > UnoDialog::insertImage( const OUString& rName, const Sequence< OUString > rPropertyNames, const Sequence< Any > rPropertyValues )
+Reference< XControl > UnoDialog::insertImage( const OUString& rName, const Sequence< OUString >& rPropertyNames, const Sequence< Any >& rPropertyValues )
 {
     Reference< XControl > xControl;
     try
diff --git a/sdext/source/minimizer/unodialog.hxx b/sdext/source/minimizer/unodialog.hxx
index 2186085..5d6750e 100644
--- a/sdext/source/minimizer/unodialog.hxx
+++ b/sdext/source/minimizer/unodialog.hxx
@@ -81,25 +81,25 @@ public :
             const com::sun::star::uno::Sequence< com::sun::star::uno::Any >& rPropertyValues );
 
     com::sun::star::uno::Reference< com::sun::star::awt::XFixedText > insertFixedText( const OUString& rName,
-        const com::sun::star::uno::Sequence< OUString > rPropertyNames, const com::sun::star::uno::Sequence< com::sun::star::uno::Any > rPropertyValues );
+        const com::sun::star::uno::Sequence< OUString >& rPropertyNames, const com::sun::star::uno::Sequence< com::sun::star::uno::Any >& rPropertyValues );
 
     com::sun::star::uno::Reference< com::sun::star::awt::XCheckBox > insertCheckBox( const OUString& rName,
-        const com::sun::star::uno::Sequence< OUString > rPropertyNames, const com::sun::star::uno::Sequence< com::sun::star::uno::Any > rPropertyValues );
+        const com::sun::star::uno::Sequence< OUString >& rPropertyNames, const com::sun::star::uno::Sequence< com::sun::star::uno::Any >& rPropertyValues );
 
     com::sun::star::uno::Reference< com::sun::star::awt::XControl > insertFormattedField( const OUString& rName,
-        const com::sun::star::uno::Sequence< OUString > rPropertyNames, const com::sun::star::uno::Sequence< com::sun::star::uno::Any > rPropertyValues );
+        const com::sun::star::uno::Sequence< OUString >& rPropertyNames, const com::sun::star::uno::Sequence< com::sun::star::uno::Any >& rPropertyValues );
 
     com::sun::star::uno::Reference< com::sun::star::awt::XComboBox > insertComboBox( const OUString& rName,
-        const com::sun::star::uno::Sequence< OUString > rPropertyNames, const com::sun::star::uno::Sequence< com::sun::star::uno::Any > rPropertyValues );
+        const com::sun::star::uno::Sequence< OUString >& rPropertyNames, const com::sun::star::uno::Sequence< com::sun::star::uno::Any >& rPropertyValues );
 
     com::sun::star::uno::Reference< com::sun::star::awt::XRadioButton > insertRadioButton( const OUString& rName,
-        const com::sun::star::uno::Sequence< OUString > rPropertyNames, const com::sun::star::uno::Sequence< com::sun::star::uno::Any > rPropertyValues );
+        const com::sun::star::uno::Sequence< OUString >& rPropertyNames, const com::sun::star::uno::Sequence< com::sun::star::uno::Any >& rPropertyValues );
 
     com::sun::star::uno::Reference< com::sun::star::awt::XListBox > insertListBox( const OUString& rName,
-        const com::sun::star::uno::Sequence< OUString > rPropertyNames, const com::sun::star::uno::Sequence< com::sun::star::uno::Any > rPropertyValues );
+        const com::sun::star::uno::Sequence< OUString >& rPropertyNames, const com::sun::star::uno::Sequence< com::sun::star::uno::Any >& rPropertyValues );
 
     com::sun::star::uno::Reference< com::sun::star::awt::XControl > insertImage( const OUString& rName,
-        const com::sun::star::uno::Sequence< OUString > rPropertyNames, const com::sun::star::uno::Sequence< com::sun::star::uno::Any > rPropertyValues );
+        const com::sun::star::uno::Sequence< OUString >& rPropertyNames, const com::sun::star::uno::Sequence< com::sun::star::uno::Any >& rPropertyValues );
 
     void setControlProperty( const OUString& rControlName, const OUString& rPropertyName, const com::sun::star::uno::Any& rPropertyValue );
     com::sun::star::uno::Any getControlProperty( const OUString& rControlName, const OUString& rPropertyName );
diff --git a/ucb/source/ucp/file/filnot.cxx b/ucb/source/ucp/file/filnot.cxx
index 1f38d42..393d85c 100644
--- a/ucb/source/ucp/file/filnot.cxx
+++ b/ucb/source/ucp/file/filnot.cxx
@@ -218,9 +218,10 @@ PropertyChangeNotifier::~PropertyChangeNotifier()
 
 
 void PropertyChangeNotifier::notifyPropertyChanged(
-    uno::Sequence< beans::PropertyChangeEvent > Changes )
+    const uno::Sequence< beans::PropertyChangeEvent >& _Changes )
 {
     sal_Int32 j;
+    uno::Sequence< beans::PropertyChangeEvent > Changes  = _Changes;
 
     for( j = 0; j < Changes.getLength(); ++j )
         Changes[j].Source = m_xCreatorContent;
diff --git a/ucb/source/ucp/file/filnot.hxx b/ucb/source/ucp/file/filnot.hxx
index dd4f690..0edf0b5 100644
--- a/ucb/source/ucp/file/filnot.hxx
+++ b/ucb/source/ucp/file/filnot.hxx
@@ -100,7 +100,7 @@ namespace fileaccess {
         ~PropertyChangeNotifier();
 
         void notifyPropertyChanged(
-            com::sun::star::uno::Sequence< com::sun::star::beans::PropertyChangeEvent > seqChanged );
+            const com::sun::star::uno::Sequence< com::sun::star::beans::PropertyChangeEvent >& seqChanged );
     };
 
 
diff --git a/uui/source/iahndl-ssl.cxx b/uui/source/iahndl-ssl.cxx
index 55d8237..1ea45b8 100644
--- a/uui/source/iahndl-ssl.cxx
+++ b/uui/source/iahndl-ssl.cxx
@@ -80,7 +80,7 @@ getContentPart( const OUString& _rRawString )
 
 bool
 isDomainMatch(
-              const OUString& hostName, uno::Sequence< OUString > certHostNames)
+              const OUString& hostName, const uno::Sequence< OUString >& certHostNames)
 {
     for ( int i = 0; i < certHostNames.getLength(); i++){
         OUString element = certHostNames[i];
diff --git a/uui/source/iahndl.cxx b/uui/source/iahndl.cxx
index 12e0052..41b7bd3 100644
--- a/uui/source/iahndl.cxx
+++ b/uui/source/iahndl.cxx
@@ -1247,7 +1247,7 @@ UUIInteractionHelper::handleMacroConfirmRequest(
     const OUString& aDocumentURL,
     const uno::Reference< embed::XStorage >& xZipStorage,
     const OUString& aDocumentVersion,
-    const uno::Sequence< security::DocumentSignatureInformation > aSignInfo,
+    const uno::Sequence< security::DocumentSignatureInformation >& aSignInfo,
     uno::Sequence< uno::Reference< task::XInteractionContinuation > > const &
         rContinuations )
     SAL_THROW((uno::RuntimeException))
diff --git a/uui/source/iahndl.hxx b/uui/source/iahndl.hxx
index 03c6123..1325e7a 100644
--- a/uui/source/iahndl.hxx
+++ b/uui/source/iahndl.hxx
@@ -280,7 +280,7 @@ private:
             ::com::sun::star::embed::XStorage >& xZipStorage,
         const OUString& aDocumentVersion,
         const ::com::sun::star::uno::Sequence<
-            ::com::sun::star::security::DocumentSignatureInformation >
+            ::com::sun::star::security::DocumentSignatureInformation >&
                 aSignInfo,
         com::sun::star::uno::Sequence<
             com::sun::star::uno::Reference<
commit 83d77931e03908c1718d9dc48f29c1db984fba85
Author: Noel Grandin <noel at peralex.com>
Date:   Wed May 14 10:57:24 2014 +0200

    writerperfect: remove SAL_INFO's that only mark function entry
    
    Change-Id: I551d3d6b44845bb324b4afcef17fdae0e0fc88e2

diff --git a/writerperfect/source/draw/CDRImportFilter.cxx b/writerperfect/source/draw/CDRImportFilter.cxx
index 396ab45..4cc5688 100644
--- a/writerperfect/source/draw/CDRImportFilter.cxx
+++ b/writerperfect/source/draw/CDRImportFilter.cxx
@@ -29,15 +29,11 @@ using com::sun::star::uno::XInterface;
 
 bool CDRImportFilter::doImportDocument( WPXInputStream &rInput, libwpg::WPGPaintInterface &rGenerator )
 {
-    SAL_INFO("writerperfect", "CDRImportFilter::doImportDocument");
-
     return libcdr::CDRDocument::parse(&rInput, &rGenerator);
 }
 
 bool CDRImportFilter::doDetectFormat( WPXInputStream &rInput, OUString &rTypeName )
 {
-    SAL_INFO("writerperfect", "CDRImportFilter::doDetectFormat");
-
     if (libcdr::CDRDocument::isSupported(&rInput))
     {
         rTypeName = "draw_CorelDraw_Document";
@@ -50,14 +46,12 @@ bool CDRImportFilter::doDetectFormat( WPXInputStream &rInput, OUString &rTypeNam
 OUString CDRImportFilter_getImplementationName ()
 throw (RuntimeException)
 {
-    SAL_INFO("writerperfect", "CDRImportFilter_getImplementationName");
     return OUString ( "com.sun.star.comp.Draw.CDRImportFilter" );
 }
 
 Sequence< OUString > SAL_CALL CDRImportFilter_getSupportedServiceNames(  )
 throw (RuntimeException)
 {
-    SAL_INFO("writerperfect", "CDRImportFilter_getSupportedServiceNames");
     Sequence < OUString > aRet(2);
     OUString *pArray = aRet.getArray();
     pArray[0] =  "com.sun.star.document.ImportFilter";
@@ -68,7 +62,6 @@ throw (RuntimeException)
 Reference< XInterface > SAL_CALL CDRImportFilter_createInstance( const Reference< XComponentContext > & rContext)
 throw( Exception )
 {
-    SAL_INFO("writerperfect", "CDRImportFilter_createInstance");
     return (cppu::OWeakObject *) new CDRImportFilter( rContext );
 }
 
@@ -76,19 +69,16 @@ throw( Exception )
 OUString SAL_CALL CDRImportFilter::getImplementationName(  )
 throw (RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "CDRImportFilter::getImplementationName");
     return CDRImportFilter_getImplementationName();
 }
 sal_Bool SAL_CALL CDRImportFilter::supportsService( const OUString &rServiceName )
 throw (RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "CDRImportFilter::supportsService");
     return cppu::supportsService( this, rServiceName );
 }
 Sequence< OUString > SAL_CALL CDRImportFilter::getSupportedServiceNames(  )
 throw (RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "CDRImportFilter::getSupportedServiceNames");
     return CDRImportFilter_getSupportedServiceNames();
 }
 
diff --git a/writerperfect/source/draw/CMXImportFilter.cxx b/writerperfect/source/draw/CMXImportFilter.cxx
index cc8f1e8..78f39de 100644
--- a/writerperfect/source/draw/CMXImportFilter.cxx
+++ b/writerperfect/source/draw/CMXImportFilter.cxx
@@ -29,15 +29,11 @@ using com::sun::star::uno::XInterface;
 
 bool CMXImportFilter::doImportDocument( WPXInputStream &rInput, libwpg::WPGPaintInterface &rGenerator )
 {
-    SAL_INFO("writerperfect", "CMXImportFilter::doImportDocument");
-
     return libcdr::CMXDocument::parse(&rInput, &rGenerator);
 }
 
 bool CMXImportFilter::doDetectFormat( WPXInputStream &rInput, OUString &rTypeName )
 {
-    SAL_INFO("writerperfect", "CMXImportFilter::doDetectFormat");
-
     if (libcdr::CMXDocument::isSupported(&rInput))
     {
         rTypeName = "draw_Corel_Presentation_Exchange";
@@ -50,14 +46,12 @@ bool CMXImportFilter::doDetectFormat( WPXInputStream &rInput, OUString &rTypeNam
 OUString CMXImportFilter_getImplementationName ()
 throw (RuntimeException)
 {
-    SAL_INFO("writerperfect", "CMXImportFilter_getImplementationName");
     return OUString ( "com.sun.star.comp.Draw.CMXImportFilter" );
 }
 
 Sequence< OUString > SAL_CALL CMXImportFilter_getSupportedServiceNames(  )
 throw (RuntimeException)
 {
-    SAL_INFO("writerperfect", "CMXImportFilter_getSupportedServiceNames");
     Sequence < OUString > aRet(2);
     OUString *pArray = aRet.getArray();
     pArray[0] = "com.sun.star.document.ImportFilter";
@@ -68,7 +62,6 @@ throw (RuntimeException)
 Reference< XInterface > SAL_CALL CMXImportFilter_createInstance( const Reference< XComponentContext > & rContext)
 throw( Exception )
 {
-    SAL_INFO("writerperfect", "CMXImportFilter_createInstance");
     return (cppu::OWeakObject *) new CMXImportFilter( rContext );
 }
 
@@ -76,19 +69,16 @@ throw( Exception )
 OUString SAL_CALL CMXImportFilter::getImplementationName(  )
 throw (RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "CMXImportFilter::getImplementationName");
     return CMXImportFilter_getImplementationName();
 }
 sal_Bool SAL_CALL CMXImportFilter::supportsService( const OUString &rServiceName )
 throw (RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "CMXImportFilter::supportsService");
     return cppu::supportsService( this, rServiceName );
 }
 Sequence< OUString > SAL_CALL CMXImportFilter::getSupportedServiceNames(  )
 throw (RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "CMXImportFilter::getSupportedServiceNames");
     return CMXImportFilter_getSupportedServiceNames();
 }
 
diff --git a/writerperfect/source/draw/FreehandImportFilter.cxx b/writerperfect/source/draw/FreehandImportFilter.cxx
index cfc0a49..b92386f 100644
--- a/writerperfect/source/draw/FreehandImportFilter.cxx
+++ b/writerperfect/source/draw/FreehandImportFilter.cxx
@@ -25,15 +25,11 @@ using com::sun::star::uno::XInterface;
 
 bool FreehandImportFilter::doImportDocument( WPXInputStream &rInput, libwpg::WPGPaintInterface &rGenerator )
 {
-    SAL_INFO("writerperfect", "FreehandImportFilter::doImportDocument");
-
     return libfreehand::FreeHandDocument::parse(&rInput, &rGenerator);
 }
 
 bool FreehandImportFilter::doDetectFormat( WPXInputStream &rInput, OUString &rTypeName )
 {
-    SAL_INFO("writerperfect", "FreehandImportFilter::doDetectFormat");
-
     if (libfreehand::FreeHandDocument::isSupported(&rInput))
     {
         rTypeName = "draw_Freehand_Document";
@@ -46,14 +42,12 @@ bool FreehandImportFilter::doDetectFormat( WPXInputStream &rInput, OUString &rTy
 OUString FreehandImportFilter_getImplementationName ()
 throw (RuntimeException)
 {
-    SAL_INFO("writerperfect", "FreehandImportFilter_getImplementationName");
     return OUString ( "com.sun.star.comp.Draw.FreehandImportFilter" );
 }
 
 Sequence< OUString > SAL_CALL FreehandImportFilter_getSupportedServiceNames(  )
 throw (RuntimeException)
 {
-    SAL_INFO("writerperfect", "FreehandImportFilter_getSupportedServiceNames");
     Sequence < OUString > aRet(2);
     OUString *pArray = aRet.getArray();
     pArray[0] =  "com.sun.star.document.ImportFilter";
@@ -64,7 +58,6 @@ throw (RuntimeException)
 Reference< XInterface > SAL_CALL FreehandImportFilter_createInstance( const Reference< XComponentContext > & rContext)
 throw( Exception )
 {
-    SAL_INFO("writerperfect", "FreehandImportFilter_createInstance");
     return (cppu::OWeakObject *) new FreehandImportFilter( rContext );
 }
 
@@ -72,19 +65,16 @@ throw( Exception )
 OUString SAL_CALL FreehandImportFilter::getImplementationName(  )
 throw (RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "FreehandImportFilter::getImplementationName");
     return FreehandImportFilter_getImplementationName();
 }
 sal_Bool SAL_CALL FreehandImportFilter::supportsService( const OUString &rServiceName )
 throw (RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "FreehandImportFilter::supportsService");
     return cppu::supportsService( this, rServiceName );
 }
 Sequence< OUString > SAL_CALL FreehandImportFilter::getSupportedServiceNames(  )
 throw (RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "FreehandImportFilter::getSupportedServiceNames");
     return FreehandImportFilter_getSupportedServiceNames();
 }
 
diff --git a/writerperfect/source/draw/ImportFilterBase.cxx b/writerperfect/source/draw/ImportFilterBase.cxx
index 4488c6a..ce98231 100644
--- a/writerperfect/source/draw/ImportFilterBase.cxx
+++ b/writerperfect/source/draw/ImportFilterBase.cxx
@@ -62,7 +62,6 @@ ImportFilterImpl::~ImportFilterImpl()
 sal_Bool SAL_CALL ImportFilterImpl::filter( const Sequence< ::com::sun::star::beans::PropertyValue >& aDescriptor )
 throw (RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "ImportFilterImpl::filter");
     sal_Int32 nLength = aDescriptor.getLength();
     const PropertyValue *pValue = aDescriptor.getConstArray();
     Reference < XInputStream > xInputStream;
@@ -101,14 +100,12 @@ throw (RuntimeException, std::exception)
 void SAL_CALL ImportFilterImpl::cancel(  )
 throw (RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "ImportFilterImpl::cancel");
 }
 
 // XImporter
 void SAL_CALL ImportFilterImpl::setTargetDocument( const Reference< ::com::sun::star::lang::XComponent >& xDoc )
 throw (::com::sun::star::lang::IllegalArgumentException, RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "ImportFilterImpl::setTargetDocument");
     mxDoc = xDoc;
 }
 
@@ -116,7 +113,6 @@ throw (::com::sun::star::lang::IllegalArgumentException, RuntimeException, std::
 OUString SAL_CALL ImportFilterImpl::detect( com::sun::star::uno::Sequence< PropertyValue >& Descriptor )
 throw( com::sun::star::uno::RuntimeException, std::exception )
 {
-    SAL_INFO("writerperfect", "ImportFilterImpl::detect");
     OUString sTypeName;
     sal_Int32 nLength = Descriptor.getLength();
     sal_Int32 location = nLength;
@@ -156,7 +152,6 @@ throw( com::sun::star::uno::RuntimeException, std::exception )
 void SAL_CALL ImportFilterImpl::initialize( const Sequence< Any >& aArguments )
 throw (Exception, RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "ImportFilterImpl::initialize");
     Sequence < PropertyValue > aAnySeq;
     sal_Int32 nLength = aArguments.getLength();
     if ( nLength && ( aArguments[0] >>= aAnySeq ) )
diff --git a/writerperfect/source/draw/MSPUBImportFilter.cxx b/writerperfect/source/draw/MSPUBImportFilter.cxx
index ca6c8a2..08f275d 100644
--- a/writerperfect/source/draw/MSPUBImportFilter.cxx
+++ b/writerperfect/source/draw/MSPUBImportFilter.cxx
@@ -27,15 +27,11 @@ using com::sun::star::uno::XInterface;
 
 bool MSPUBImportFilter::doImportDocument( WPXInputStream &rInput, libwpg::WPGPaintInterface &rGenerator )
 {
-    SAL_INFO("writerperfect", "MSPUBImportFilter::doImportDocument");
-
     return libmspub::MSPUBDocument::parse(&rInput, &rGenerator);
 }
 
 bool MSPUBImportFilter::doDetectFormat( WPXInputStream &rInput, OUString &rTypeName )
 {
-    SAL_INFO("writerperfect", "MSPUBImportFilter::doDetectFormat");
-
     if (libmspub::MSPUBDocument::isSupported(&rInput))
     {
         rTypeName = "draw_Publisher_Document";
@@ -48,14 +44,12 @@ bool MSPUBImportFilter::doDetectFormat( WPXInputStream &rInput, OUString &rTypeN
 OUString MSPUBImportFilter_getImplementationName ()
 throw (RuntimeException)
 {
-    SAL_INFO("writerperfect", "MSPUBImportFilter_getImplementationName");
     return OUString ( "com.sun.star.comp.Draw.MSPUBImportFilter" );
 }
 
 Sequence< OUString > SAL_CALL MSPUBImportFilter_getSupportedServiceNames(  )
 throw (RuntimeException)
 {
-    SAL_INFO("writerperfect", "MSPUBImportFilter_getSupportedServiceNames");
     Sequence < OUString > aRet(2);
     OUString *pArray = aRet.getArray();
     pArray[0] =  "com.sun.star.document.ImportFilter";
@@ -66,7 +60,6 @@ throw (RuntimeException)
 Reference< XInterface > SAL_CALL MSPUBImportFilter_createInstance( const Reference< XComponentContext > & rContext)
 throw( Exception )
 {
-    SAL_INFO("writerperfect", "MSPUBImportFilter_createInstance");
     return (cppu::OWeakObject *) new MSPUBImportFilter( rContext );
 }
 
@@ -74,19 +67,16 @@ throw( Exception )
 OUString SAL_CALL MSPUBImportFilter::getImplementationName(  )
 throw (RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "MSPUBImportFilter::getImplementationName");
     return MSPUBImportFilter_getImplementationName();
 }
 sal_Bool SAL_CALL MSPUBImportFilter::supportsService( const OUString &rServiceName )
 throw (RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "MSPUBImportFilter::supportsService");
     return cppu::supportsService( this, rServiceName );
 }
 Sequence< OUString > SAL_CALL MSPUBImportFilter::getSupportedServiceNames(  )
 throw (RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "MSPUBImportFilter::getSupportedServiceNames");
     return MSPUBImportFilter_getSupportedServiceNames();
 }
 
diff --git a/writerperfect/source/draw/VisioImportFilter.cxx b/writerperfect/source/draw/VisioImportFilter.cxx
index 0c5d32f..311068b 100644
--- a/writerperfect/source/draw/VisioImportFilter.cxx
+++ b/writerperfect/source/draw/VisioImportFilter.cxx
@@ -25,15 +25,11 @@ using com::sun::star::uno::XInterface;
 
 bool VisioImportFilter::doImportDocument( WPXInputStream &rInput, libwpg::WPGPaintInterface &rGenerator )
 {
-    SAL_INFO("writerperfect", "VisioImportFilter::doImportDocument");
-
     return libvisio::VisioDocument::parse(&rInput, &rGenerator);
 }
 
 bool VisioImportFilter::doDetectFormat( WPXInputStream &rInput, OUString &rTypeName )
 {
-    SAL_INFO("writerperfect", "VisioImportFilter::doDetectFormat");
-
     if (libvisio::VisioDocument::isSupported(&rInput))
     {
         rTypeName = "draw_Visio_Document";
@@ -46,14 +42,12 @@ bool VisioImportFilter::doDetectFormat( WPXInputStream &rInput, OUString &rTypeN
 OUString VisioImportFilter_getImplementationName ()
 throw (RuntimeException)
 {
-    SAL_INFO("writerperfect", "VisioImportFilter_getImplementationName");
     return OUString ( "com.sun.star.comp.Draw.VisioImportFilter" );
 }
 
 Sequence< OUString > SAL_CALL VisioImportFilter_getSupportedServiceNames(  )
 throw (RuntimeException)
 {
-    SAL_INFO("writerperfect", "VisioImportFilter_getSupportedServiceNames");
     Sequence < OUString > aRet(2);
     OUString *pArray = aRet.getArray();
     pArray[0] =  "com.sun.star.document.ImportFilter";
@@ -64,7 +58,6 @@ throw (RuntimeException)
 Reference< XInterface > SAL_CALL VisioImportFilter_createInstance( const Reference< XComponentContext > & rContext)
 throw( Exception )
 {
-    SAL_INFO("writerperfect", "VisioImportFilter_createInstance");
     return (cppu::OWeakObject *) new VisioImportFilter( rContext );
 }
 
@@ -72,19 +65,16 @@ throw( Exception )
 OUString SAL_CALL VisioImportFilter::getImplementationName(  )
 throw (RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "VisioImportFilter::getImplementationName");
     return VisioImportFilter_getImplementationName();
 }
 sal_Bool SAL_CALL VisioImportFilter::supportsService( const OUString &rServiceName )
 throw (RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "VisioImportFilter::supportsService");
     return cppu::supportsService( this, rServiceName );
 }
 Sequence< OUString > SAL_CALL VisioImportFilter::getSupportedServiceNames(  )
 throw (RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "VisioImportFilter::getSupportedServiceNames");
     return VisioImportFilter_getSupportedServiceNames();
 }
 
diff --git a/writerperfect/source/draw/WPGImportFilter.cxx b/writerperfect/source/draw/WPGImportFilter.cxx
index 6e4dd3a..4341af2 100644
--- a/writerperfect/source/draw/WPGImportFilter.cxx
+++ b/writerperfect/source/draw/WPGImportFilter.cxx
@@ -30,15 +30,11 @@ using com::sun::star::uno::XInterface;
 
 bool WPGImportFilter::doImportDocument( WPXInputStream &rInput, libwpg::WPGPaintInterface &rGenerator )
 {
-    SAL_INFO("writerperfect", "WPGImportFilter::doImportDocument");
-
     return libwpg::WPGraphics::parse(&rInput, &rGenerator);
 }
 
 bool WPGImportFilter::doDetectFormat( WPXInputStream &rInput, OUString &rTypeName )
 {
-    SAL_INFO("writerperfect", "WPGImportFilter::doDetectFormat");
-
     if (libwpg::WPGraphics::isSupported(&rInput))
     {
         rTypeName = "draw_WordPerfect_Graphics";
@@ -51,14 +47,12 @@ bool WPGImportFilter::doDetectFormat( WPXInputStream &rInput, OUString &rTypeNam
 OUString WPGImportFilter_getImplementationName ()
 throw (RuntimeException)
 {
-    SAL_INFO("writerperfect", "WPGImportFilter_getImplementationName");
     return OUString (  "com.sun.star.comp.Draw.WPGImportFilter"  );
 }
 
 Sequence< OUString > SAL_CALL WPGImportFilter_getSupportedServiceNames(  )
 throw (RuntimeException)
 {
-    SAL_INFO("writerperfect", "WPGImportFilter_getSupportedServiceNames");
     Sequence < OUString > aRet(2);
     OUString *pArray = aRet.getArray();
     pArray[0] =  "com.sun.star.document.ImportFilter";
@@ -69,7 +63,6 @@ throw (RuntimeException)
 Reference< XInterface > SAL_CALL WPGImportFilter_createInstance( const Reference< XComponentContext > & rContext)
 throw( Exception )
 {
-    SAL_INFO("writerperfect", "WPGImportFilter_createInstance");
     return (cppu::OWeakObject *) new WPGImportFilter( rContext );
 }
 
@@ -77,19 +70,16 @@ throw( Exception )
 OUString SAL_CALL WPGImportFilter::getImplementationName(  )
 throw (RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "WPGImportFilter::getImplementationName");
     return WPGImportFilter_getImplementationName();
 }
 sal_Bool SAL_CALL WPGImportFilter::supportsService( const OUString &rServiceName )
 throw (RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "WPGImportFilter::supportsService");
     return cppu::supportsService( this, rServiceName );
 }
 Sequence< OUString > SAL_CALL WPGImportFilter::getSupportedServiceNames(  )
 throw (RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "WPGImportFilter::getSupportedServiceNames");
     return WPGImportFilter_getSupportedServiceNames();
 }
 
diff --git a/writerperfect/source/impress/KeynoteImportFilter.cxx b/writerperfect/source/impress/KeynoteImportFilter.cxx
index 0e5a6bd..9f8b57e 100644
--- a/writerperfect/source/impress/KeynoteImportFilter.cxx
+++ b/writerperfect/source/impress/KeynoteImportFilter.cxx
@@ -104,7 +104,6 @@ bool lcl_isPackage( const Any &rComponentData )
 sal_Bool SAL_CALL KeynoteImportFilter::filter( const Sequence< ::com::sun::star::beans::PropertyValue >& aDescriptor )
 throw (RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "KeynoteImportFilter::filter");
     sal_Int32 nLength = aDescriptor.getLength();
     const PropertyValue *pValue = aDescriptor.getConstArray();
     Reference < XInputStream > xInputStream;
@@ -159,14 +158,12 @@ throw (RuntimeException, std::exception)
 void SAL_CALL KeynoteImportFilter::cancel(  )
 throw (RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "KeynoteImportFilter::cancel");
 }
 
 // XImporter
 void SAL_CALL KeynoteImportFilter::setTargetDocument( const Reference< ::com::sun::star::lang::XComponent >& xDoc )
 throw (::com::sun::star::lang::IllegalArgumentException, RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "KeynoteImportFilter::setTargetDocument");
     mxDoc = xDoc;
 }
 
@@ -174,8 +171,6 @@ throw (::com::sun::star::lang::IllegalArgumentException, RuntimeException, std::
 OUString SAL_CALL KeynoteImportFilter::detect( com::sun::star::uno::Sequence< PropertyValue >& Descriptor )
 throw( com::sun::star::uno::RuntimeException, std::exception )
 {
-    SAL_INFO("writerperfect", "KeynoteImportFilter::detect");
-
     sal_Int32 nLength = Descriptor.getLength();
     sal_Int32 nNewLength = nLength + 2;
     sal_Int32 nComponentDataLocation = -1;
@@ -338,7 +333,6 @@ throw( com::sun::star::uno::RuntimeException, std::exception )
 void SAL_CALL KeynoteImportFilter::initialize( const Sequence< Any >& aArguments )
 throw (Exception, RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "KeynoteImportFilter::initialize");
     Sequence < PropertyValue > aAnySeq;
     sal_Int32 nLength = aArguments.getLength();
     if ( nLength && ( aArguments[0] >>= aAnySeq ) )
@@ -359,7 +353,6 @@ throw (Exception, RuntimeException, std::exception)
 OUString KeynoteImportFilter_getImplementationName ()
 throw (RuntimeException)
 {
-    SAL_INFO("writerperfect", "KeynoteImportFilter_getImplementationName");
     return OUString ( "org.libreoffice.comp.Impress.KeynoteImportFilter" );
 }
 
@@ -369,7 +362,6 @@ throw (RuntimeException)
 Sequence< OUString > SAL_CALL KeynoteImportFilter_getSupportedServiceNames(  )
 throw (RuntimeException)
 {
-    SAL_INFO("writerperfect", "KeynoteImportFilter_getSupportedServiceNames");
     Sequence < OUString > aRet(2);
     OUString *pArray = aRet.getArray();
     pArray[0] =  OUString ( SERVICE_NAME1 );
@@ -383,7 +375,6 @@ throw (RuntimeException)
 Reference< XInterface > SAL_CALL KeynoteImportFilter_createInstance( const Reference< XComponentContext > & rContext)
 throw( Exception )
 {
-    SAL_INFO("writerperfect", "KeynoteImportFilter_createInstance");
     return (cppu::OWeakObject *) new KeynoteImportFilter( rContext );
 }
 
@@ -391,21 +382,18 @@ throw( Exception )
 OUString SAL_CALL KeynoteImportFilter::getImplementationName(  )
 throw (RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "KeynoteImportFilter::getImplementationName");
     return KeynoteImportFilter_getImplementationName();
 }
 
 sal_Bool SAL_CALL KeynoteImportFilter::supportsService( const OUString &rServiceName )
 throw (RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "KeynoteImportFilter::supportsService");
     return cppu::supportsService(this, rServiceName);
 }
 
 Sequence< OUString > SAL_CALL KeynoteImportFilter::getSupportedServiceNames(  )
 throw (RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "KeynoteImportFilter::getSupportedServiceNames");
     return KeynoteImportFilter_getSupportedServiceNames();
 }
 
diff --git a/writerperfect/source/writer/ImportFilterBase.cxx b/writerperfect/source/writer/ImportFilterBase.cxx
index f5bc6b9..59bc8ef 100644
--- a/writerperfect/source/writer/ImportFilterBase.cxx
+++ b/writerperfect/source/writer/ImportFilterBase.cxx
@@ -60,7 +60,6 @@ ImportFilterImpl::~ImportFilterImpl()
 sal_Bool SAL_CALL ImportFilterImpl::filter( const Sequence< ::com::sun::star::beans::PropertyValue >& aDescriptor )
 throw (RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "ImportFilterImpl::filter");
     sal_Int32 nLength = aDescriptor.getLength();
     const PropertyValue *pValue = aDescriptor.getConstArray();
     Reference < XInputStream > xInputStream;
@@ -104,14 +103,12 @@ throw (RuntimeException, std::exception)
 void SAL_CALL ImportFilterImpl::cancel(  )
 throw (RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "ImportFilterImpl::cancel");
 }
 
 // XImporter
 void SAL_CALL ImportFilterImpl::setTargetDocument( const Reference< ::com::sun::star::lang::XComponent >& xDoc )
 throw (::com::sun::star::lang::IllegalArgumentException, RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "ImportFilterImpl::setTargetDocument");
     mxDoc = xDoc;
 }
 
@@ -119,7 +116,6 @@ throw (::com::sun::star::lang::IllegalArgumentException, RuntimeException, std::
 OUString SAL_CALL ImportFilterImpl::detect( com::sun::star::uno::Sequence< PropertyValue >& Descriptor )
 throw( com::sun::star::uno::RuntimeException, std::exception )
 {
-    SAL_INFO("writerperfect", "ImportFilterImpl::detect");
     OUString sTypeName;
     sal_Int32 nLength = Descriptor.getLength();
     sal_Int32 location = nLength;
@@ -158,7 +154,6 @@ throw( com::sun::star::uno::RuntimeException, std::exception )
 void SAL_CALL ImportFilterImpl::initialize( const Sequence< Any >& aArguments )
 throw (Exception, RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "ImportFilterImpl::initialize");
     Sequence < PropertyValue > aAnySeq;
     sal_Int32 nLength = aArguments.getLength();
     if ( nLength && ( aArguments[0] >>= aAnySeq ) )
diff --git a/writerperfect/source/writer/WordPerfectImportFilter.cxx b/writerperfect/source/writer/WordPerfectImportFilter.cxx
index 9a268be..ee0aad2 100644
--- a/writerperfect/source/writer/WordPerfectImportFilter.cxx
+++ b/writerperfect/source/writer/WordPerfectImportFilter.cxx
@@ -88,8 +88,6 @@ static bool handleEmbeddedWPGImage(const WPXBinaryData &input, WPXBinaryData &ou
 bool SAL_CALL WordPerfectImportFilter::importImpl( const Sequence< ::com::sun::star::beans::PropertyValue >& aDescriptor )
 throw (RuntimeException)
 {
-    SAL_INFO("writerperfect", "WordPerfectImportFilter::importImpl");
-
     sal_Int32 nLength = aDescriptor.getLength();
     const PropertyValue *pValue = aDescriptor.getConstArray();
     Reference < XInputStream > xInputStream;
@@ -155,20 +153,17 @@ throw (RuntimeException)
 sal_Bool SAL_CALL WordPerfectImportFilter::filter( const Sequence< ::com::sun::star::beans::PropertyValue >& aDescriptor )
 throw (RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "WordPerfectImportFilter::filter");
     return importImpl ( aDescriptor );
 }
 void SAL_CALL WordPerfectImportFilter::cancel(  )
 throw (RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "WordPerfectImportFilter::cancel");
 }
 
 // XImporter
 void SAL_CALL WordPerfectImportFilter::setTargetDocument( const Reference< ::com::sun::star::lang::XComponent >& xDoc )
 throw (::com::sun::star::lang::IllegalArgumentException, RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "WordPerfectImportFilter::getTargetDocument");
     mxDoc = xDoc;
 }
 
@@ -176,8 +171,6 @@ throw (::com::sun::star::lang::IllegalArgumentException, RuntimeException, std::
 OUString SAL_CALL WordPerfectImportFilter::detect( Sequence< PropertyValue >& Descriptor )
 throw( RuntimeException, std::exception )
 {
-    SAL_INFO("writerperfect", "WordPerfectImportFilter::detect");
-
     WPDConfidence confidence = WPD_CONFIDENCE_NONE;
     OUString sTypeName;
     sal_Int32 nLength = Descriptor.getLength();
@@ -221,7 +214,6 @@ throw( RuntimeException, std::exception )
 void SAL_CALL WordPerfectImportFilter::initialize( const Sequence< Any >& aArguments )
 throw (Exception, RuntimeException, std::exception)
 {
-    SAL_INFO("writerperfect", "WordPerfectImportFilter::initialize");
     Sequence < PropertyValue > aAnySeq;
     sal_Int32 nLength = aArguments.getLength();
     if ( nLength && ( aArguments[0] >>= aAnySeq ) )
commit 456352e3fa7e983dc062c32025bb97021e7c18f3
Author: Noel Grandin <noel at peralex.com>
Date:   Wed May 14 10:43:48 2014 +0200

    sw: remove SAL_INFO's that only mark function entry
    
    Change-Id: I7169b1fec563add36900622dd599a92792e57675

diff --git a/sw/source/core/doc/docdraw.cxx b/sw/source/core/doc/docdraw.cxx
index bea96c5..9e48240 100644
--- a/sw/source/core/doc/docdraw.cxx
+++ b/sw/source/core/doc/docdraw.cxx
@@ -548,7 +548,7 @@ void SwDoc::InitDrawModel()
 //      pSdrPool->FreezeIdRanges();
 
     // set FontHeight pool defaults without changing static SdrEngineDefaults
-     GetAttrPool().SetPoolDefaultItem(SvxFontHeightItem( 240, 100, EE_CHAR_FONTHEIGHT ));
+    GetAttrPool().SetPoolDefaultItem(SvxFontHeightItem( 240, 100, EE_CHAR_FONTHEIGHT ));
 
     SAL_INFO( "sw.doc", "before create DrawDocument" );
     // The document owns the SdrModel. We always have two layers and one page.
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx b/sw/source/filter/ww8/docxattributeoutput.cxx
index 74c47c6..0c00952 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -4073,8 +4073,6 @@ void DocxAttributeOutput::WritePostponedOLE()
     if( m_postponedOLE == NULL )
         return;
 
-    SAL_INFO( "sw.ww8", OSL_THIS_FUNC );
-
     for( std::list< PostponedOLE >::iterator it = m_postponedOLE->begin();
          it != m_postponedOLE->end();
          ++it )
diff --git a/sw/source/filter/ww8/rtfattributeoutput.cxx b/sw/source/filter/ww8/rtfattributeoutput.cxx
index d3fb672..1bcaea7 100644
--- a/sw/source/filter/ww8/rtfattributeoutput.cxx
+++ b/sw/source/filter/ww8/rtfattributeoutput.cxx
@@ -202,7 +202,6 @@ static OString OutBorderLine(RtfExport& rExport, const SvxBorderLine* pLine,
 
 void RtfAttributeOutput::RTLAndCJKState(bool bIsRTL, sal_uInt16 nScript)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
     /*
        You would have thought that
        m_rExport.Strm() << (bIsRTL ? OOO_STRING_SVTOOLS_RTF_RTLCH : OOO_STRING_SVTOOLS_RTF_LTRCH); would be sufficient here ,
@@ -244,8 +243,6 @@ void RtfAttributeOutput::RTLAndCJKState(bool bIsRTL, sal_uInt16 nScript)
 
 void RtfAttributeOutput::StartParagraph(ww8::WW8TableNodeInfo::Pointer_t pTextNodeInfo)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     // Output table/table row/table cell starts if needed
     if (pTextNodeInfo.get())
     {
@@ -299,7 +296,6 @@ void RtfAttributeOutput::StartParagraph(ww8::WW8TableNodeInfo::Pointer_t pTextNo
 
 void RtfAttributeOutput::EndParagraph(ww8::WW8TableNodeInfoInner::Pointer_t pTextNodeInfoInner)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
     bool bLastPara = false;
     if (m_rExport.nTxtTyp == TXT_FTN || m_rExport.nTxtTyp == TXT_EDN)
     {
@@ -339,14 +335,11 @@ void RtfAttributeOutput::EndParagraph(ww8::WW8TableNodeInfoInner::Pointer_t pTex
 
 void RtfAttributeOutput::EmptyParagraph()
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     m_rExport.Strm().WriteCharPtr(SAL_NEWLINE_STRING).WriteCharPtr(OOO_STRING_SVTOOLS_RTF_PAR).WriteChar(' ');
 }
 
 void RtfAttributeOutput::SectionBreaks(const SwTxtNode& rNode)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
     OSL_ENSURE(m_aStyles.getLength() == 0, "m_aStyles is not empty");
 
     // output page/section breaks
@@ -376,8 +369,6 @@ void RtfAttributeOutput::SectionBreaks(const SwTxtNode& rNode)
 
 void RtfAttributeOutput::StartParagraphProperties()
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     OStringBuffer aPar;
     if (!m_rExport.bRTFFlySyntax)
     {
@@ -393,7 +384,6 @@ void RtfAttributeOutput::StartParagraphProperties()
 
 void RtfAttributeOutput::EndParagraphProperties(const SfxItemSet* /*pParagraphMarkerProperties*/, const SwRedlineData* /*pRedlineData*/, const SwRedlineData* /*pRedlineParagraphMarkerDeleted*/, const SwRedlineData* /*pRedlineParagraphMarkerInserted*/)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
     m_aStyles.append(m_aStylesEnd.makeStringAndClear());
     m_rExport.Strm().WriteCharPtr(m_aStyles.makeStringAndClear().getStr());
 }
@@ -415,7 +405,6 @@ void RtfAttributeOutput::StartRun(const SwRedlineData* pRedlineData, bool bSingl
 
 void RtfAttributeOutput::EndRun()
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
     if (m_bInURL)
         EndURL();
     m_aRun->append(SAL_NEWLINE_STRING);
@@ -427,13 +416,11 @@ void RtfAttributeOutput::EndRun()
 
 void RtfAttributeOutput::StartRunProperties()
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
     OSL_ENSURE(m_aStyles.getLength() == 0, "m_aStyles is not empty");
 }
 
 void RtfAttributeOutput::EndRunProperties(const SwRedlineData* /*pRedlineData*/)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
     m_aStyles.append(m_aStylesEnd.makeStringAndClear());
     m_aRun->append(m_aStyles.makeStringAndClear());
 }
@@ -456,7 +443,6 @@ OStringBuffer& RtfAttributeOutput::Styles()
 
 void RtfAttributeOutput::RawText(const OUString& rText, bool /*bForceUnicode*/, rtl_TextEncoding eCharSet)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
     m_aRunText->append(msfilter::rtfutil::OutString(rText, eCharSet));
 }
 
@@ -472,8 +458,6 @@ void RtfAttributeOutput::EndRuby()
 
 bool RtfAttributeOutput::StartURL(const OUString& rUrl, const OUString& rTarget)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     m_aStyles.append('{');
     m_aStyles.append(OOO_STRING_SVTOOLS_RTF_FIELD);
     m_aStyles.append('{');
@@ -504,8 +488,6 @@ bool RtfAttributeOutput::StartURL(const OUString& rUrl, const OUString& rTarget)
 
 bool RtfAttributeOutput::EndURL()
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     if (m_bInURL)
         m_bInURL = false;
     else
@@ -529,8 +511,6 @@ void RtfAttributeOutput::Redline(const SwRedlineData* pRedline)
     if (!pRedline)
         return;
 
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     if (pRedline->GetType() == nsRedlineType_t::REDLINE_INSERT)
     {
         m_aRun->append(OOO_STRING_SVTOOLS_RTF_REVISED);
@@ -556,8 +536,6 @@ void RtfAttributeOutput::FormatDrop(const SwTxtNode& /*rNode*/, const SwFmtDrop&
 
 void RtfAttributeOutput::ParagraphStyle(sal_uInt16 nStyle)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     OString* pStyle = m_rExport.GetStyle(nStyle);
     OStringBuffer aStyle;
     aStyle.append(OOO_STRING_SVTOOLS_RTF_S);
@@ -572,8 +550,6 @@ void RtfAttributeOutput::ParagraphStyle(sal_uInt16 nStyle)
 
 void RtfAttributeOutput::TableInfoCell(ww8::WW8TableNodeInfoInner::Pointer_t /*pTableTextNodeInfoInner*/)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     m_aStyles.append(OOO_STRING_SVTOOLS_RTF_INTBL);
     if (m_nTableDepth > 1)
     {
@@ -585,15 +561,11 @@ void RtfAttributeOutput::TableInfoCell(ww8::WW8TableNodeInfoInner::Pointer_t /*p
 
 void RtfAttributeOutput::TableInfoRow(ww8::WW8TableNodeInfoInner::Pointer_t /*pTableTextNodeInfo*/)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     /* noop */
 }
 
 void RtfAttributeOutput::TableDefinition(ww8::WW8TableNodeInfoInner::Pointer_t pTableTextNodeInfoInner)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     if (!m_pTableWrt)
         InitTableHelper(pTableTextNodeInfoInner);
 
@@ -675,8 +647,6 @@ void RtfAttributeOutput::TableDefinition(ww8::WW8TableNodeInfoInner::Pointer_t p
 
 void RtfAttributeOutput::TableDefaultBorders(ww8::WW8TableNodeInfoInner::Pointer_t pTableTextNodeInfoInner)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     /*
      * The function name is a bit misleading: given that we write borders
      * before each row, we just have borders, not default ones. Additionally,
@@ -731,8 +701,6 @@ void RtfAttributeOutput::TableDefaultBorders(ww8::WW8TableNodeInfoInner::Pointer
 
 void RtfAttributeOutput::TableBackgrounds(ww8::WW8TableNodeInfoInner::Pointer_t pTableTextNodeInfoInner)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     const SwWriteTableRows& aRows = m_pTableWrt->GetRows();
     SwWriteTableRow* pRow = aRows[ pTableTextNodeInfoInner->getRow() ];
     const SwWriteTableCell* pCell = &pRow->GetCells()[ pTableTextNodeInfoInner->getCell() ];
@@ -759,8 +727,6 @@ void RtfAttributeOutput::TableCellRedline(ww8::WW8TableNodeInfoInner::Pointer_t
 
 void RtfAttributeOutput::TableHeight(ww8::WW8TableNodeInfoInner::Pointer_t pTableTextNodeInfoInner)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     const SwTableBox* pTabBox = pTableTextNodeInfoInner->getTableBox();
     const SwTableLine* pTabLine = pTabBox->GetUpper();
     const SwFrmFmt* pLineFmt = pTabLine->GetFrmFmt();
@@ -792,8 +758,6 @@ void RtfAttributeOutput::TableHeight(ww8::WW8TableNodeInfoInner::Pointer_t pTabl
 
 void RtfAttributeOutput::TableCanSplit(ww8::WW8TableNodeInfoInner::Pointer_t pTableTextNodeInfoInner)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     const SwTableBox* pTabBox = pTableTextNodeInfoInner->getTableBox();
     const SwTableLine* pTabLine = pTabBox->GetUpper();
     const SwFrmFmt* pLineFmt = pTabLine->GetFrmFmt();
@@ -806,8 +770,6 @@ void RtfAttributeOutput::TableCanSplit(ww8::WW8TableNodeInfoInner::Pointer_t pTa
 
 void RtfAttributeOutput::TableBidi(ww8::WW8TableNodeInfoInner::Pointer_t pTableTextNodeInfoInner)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     const SwTable* pTable = pTableTextNodeInfoInner->getTable();
     const SwFrmFmt* pFrmFmt = pTable->GetFrmFmt();
 
@@ -819,8 +781,6 @@ void RtfAttributeOutput::TableBidi(ww8::WW8TableNodeInfoInner::Pointer_t pTableT
 
 void RtfAttributeOutput::TableVerticalCell(ww8::WW8TableNodeInfoInner::Pointer_t pTableTextNodeInfoInner)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     const SwWriteTableRows& aRows = m_pTableWrt->GetRows();
     SwWriteTableRow* pRow = aRows[ pTableTextNodeInfoInner->getRow() ];
     const SwWriteTableCell* pCell = &pRow->GetCells()[ pTableTextNodeInfoInner->getCell() ];
@@ -851,15 +811,11 @@ void RtfAttributeOutput::TableVerticalCell(ww8::WW8TableNodeInfoInner::Pointer_t
 
 void RtfAttributeOutput::TableNodeInfo(ww8::WW8TableNodeInfo::Pointer_t /*pNodeInfo*/)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     /* noop */
 }
 
 void RtfAttributeOutput::TableNodeInfoInner(ww8::WW8TableNodeInfoInner::Pointer_t pNodeInfoInner)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     // This is called when the nested table ends in a cell, and there's no
     // paragraph benhind that; so we must check for the ends of cell, rows,
     // and tables
@@ -869,8 +825,6 @@ void RtfAttributeOutput::TableNodeInfoInner(ww8::WW8TableNodeInfoInner::Pointer_
 
 void RtfAttributeOutput::TableOrientation(ww8::WW8TableNodeInfoInner::Pointer_t pTableTextNodeInfoInner)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     const SwTable* pTable = pTableTextNodeInfoInner->getTable();
     SwFrmFmt* pFmt = pTable->GetFrmFmt();
 
@@ -904,8 +858,6 @@ void RtfAttributeOutput::TableSpacing(ww8::WW8TableNodeInfoInner::Pointer_t /*pT
 
 void RtfAttributeOutput::TableRowEnd(sal_uInt32 /*nDepth*/)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     /* noop, see EndTableRow() */
 }
 
@@ -915,8 +867,6 @@ void RtfAttributeOutput::TableRowEnd(sal_uInt32 /*nDepth*/)
 
 void RtfAttributeOutput::InitTableHelper(ww8::WW8TableNodeInfoInner::Pointer_t pTableTextNodeInfoInner)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     sal_uInt32 nPageSize = 0;
     bool bRelBoxSize = false;
 
@@ -937,8 +887,6 @@ void RtfAttributeOutput::InitTableHelper(ww8::WW8TableNodeInfoInner::Pointer_t p
 
 void RtfAttributeOutput::StartTable(ww8::WW8TableNodeInfoInner::Pointer_t /*pTableTextNodeInfoInner*/)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     // To trigger calling InitTableHelper()
     delete m_pTableWrt, m_pTableWrt = NULL;
 }
@@ -964,15 +912,11 @@ void RtfAttributeOutput::StartTableRow(ww8::WW8TableNodeInfoInner::Pointer_t pTa
 
 void RtfAttributeOutput::StartTableCell(ww8::WW8TableNodeInfoInner::Pointer_t /*pTableTextNodeInfoInner*/)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     m_bTableCellOpen = true;
 }
 
 void RtfAttributeOutput::TableCellProperties(ww8::WW8TableNodeInfoInner::Pointer_t pTableTextNodeInfoInner)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     TableDefaultBorders(pTableTextNodeInfoInner);
     TableBackgrounds(pTableTextNodeInfoInner);
     TableVerticalCell(pTableTextNodeInfoInner);
@@ -1034,8 +978,6 @@ void RtfAttributeOutput::EndTableRow()
 
 void RtfAttributeOutput::EndTable()
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     if (m_nTableDepth > 0)
     {
         m_nTableDepth--;
@@ -1052,8 +994,6 @@ void RtfAttributeOutput::EndTable()
 
 void RtfAttributeOutput::FinishTableRowCell(ww8::WW8TableNodeInfoInner::Pointer_t pInner, bool /*bForceEmptyParagraph*/)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     if (pInner.get())
     {
         // Where are we in the table
@@ -1078,7 +1018,6 @@ void RtfAttributeOutput::FinishTableRowCell(ww8::WW8TableNodeInfoInner::Pointer_
 
 void RtfAttributeOutput::StartStyles()
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
     m_rExport.Strm().WriteCharPtr(SAL_NEWLINE_STRING).WriteChar('{').WriteCharPtr(OOO_STRING_SVTOOLS_RTF_COLORTBL);
     m_rExport.OutColorTable();
     OSL_ENSURE(m_aStylesheet.getLength() == 0, "m_aStylesheet is not empty");
@@ -1089,7 +1028,6 @@ void RtfAttributeOutput::StartStyles()
 
 void RtfAttributeOutput::EndStyles(sal_uInt16 /*nNumberOfStyles*/)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
     m_rExport.Strm().WriteChar('}');
     m_rExport.Strm().WriteCharPtr(m_aStylesheet.makeStringAndClear().getStr());
     m_rExport.Strm().WriteChar('}');
@@ -1097,8 +1035,6 @@ void RtfAttributeOutput::EndStyles(sal_uInt16 /*nNumberOfStyles*/)
 
 void RtfAttributeOutput::DefaultStyle(sal_uInt16 /*nStyle*/)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     /* noop, the default style is always 0 in RTF */
 }
 
@@ -1130,7 +1066,6 @@ void RtfAttributeOutput::StartStyle(const OUString& rName, StyleType eType,
 
 void RtfAttributeOutput::EndStyle()
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
     m_aStyles.append(m_aStylesEnd.makeStringAndClear());
     OString aStyles = m_aStyles.makeStringAndClear();
     m_rExport.InsStyle(m_nStyleId, aStyles);
@@ -1143,20 +1078,16 @@ void RtfAttributeOutput::EndStyle()
 
 void RtfAttributeOutput::StartStyleProperties(bool /*bParProp*/, sal_uInt16 /*nStyle*/)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
     /* noop */
 }
 
 void RtfAttributeOutput::EndStyleProperties(bool /*bParProp*/)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
     /* noop */
 }
 
 void RtfAttributeOutput::OutlineNumbering(sal_uInt8 nLvl, const SwNumFmt& /*rNFmt*/, const SwFmt& /*rFmt*/)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     if (nLvl >= WW8ListManager::nMaxLevel)
         nLvl = WW8ListManager::nMaxLevel - 1;
 
@@ -1168,8 +1099,6 @@ void RtfAttributeOutput::OutlineNumbering(sal_uInt8 nLvl, const SwNumFmt& /*rNFm
 
 void RtfAttributeOutput::PageBreakBefore(bool bBreak)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     if (bBreak)
     {
         m_rExport.Strm().WriteCharPtr(OOO_STRING_SVTOOLS_RTF_PAGEBB);
@@ -1178,8 +1107,6 @@ void RtfAttributeOutput::PageBreakBefore(bool bBreak)
 
 void RtfAttributeOutput::SectionBreak(sal_uInt8 nC, const WW8_SepInfo* pSectionInfo)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     switch (nC)
     {
     case msword::ColumnBreak:
@@ -1194,8 +1121,6 @@ void RtfAttributeOutput::SectionBreak(sal_uInt8 nC, const WW8_SepInfo* pSectionI
 
 void RtfAttributeOutput::StartSection()
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     m_aSectionBreaks.append(OOO_STRING_SVTOOLS_RTF_SECT OOO_STRING_SVTOOLS_RTF_SECTD);
     if (!m_bBufferSectionBreaks)
         m_rExport.Strm().WriteCharPtr(m_aSectionBreaks.makeStringAndClear().getStr());
@@ -1203,8 +1128,6 @@ void RtfAttributeOutput::StartSection()
 
 void RtfAttributeOutput::EndSection()
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     /*
      * noop, \sect must go to StartSection or Word won't notice multiple
      * columns...
@@ -1213,16 +1136,12 @@ void RtfAttributeOutput::EndSection()
 
 void RtfAttributeOutput::SectionFormProtection(bool bProtected)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     m_aSectionBreaks.append(OOO_STRING_SVTOOLS_RTF_SECTUNLOCKED);
     m_aSectionBreaks.append((sal_Int32)!bProtected);
 }
 
 void RtfAttributeOutput::SectionLineNumbering(sal_uLong /*nRestartNo*/, const SwLineNumberInfo& rLnNumInfo)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     m_rExport.Strm().WriteCharPtr(OOO_STRING_SVTOOLS_RTF_LINEMOD);
     m_rExport.OutLong(rLnNumInfo.GetCountBy());
     m_rExport.Strm().WriteCharPtr(OOO_STRING_SVTOOLS_RTF_LINEX);
@@ -1233,8 +1152,6 @@ void RtfAttributeOutput::SectionLineNumbering(sal_uLong /*nRestartNo*/, const Sw
 
 void RtfAttributeOutput::SectionTitlePage()
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     /*
      * noop, handled in RtfExport::WriteHeaderFooter()
      */
@@ -1242,8 +1159,6 @@ void RtfAttributeOutput::SectionTitlePage()
 
 void RtfAttributeOutput::SectionPageBorders(const SwFrmFmt* pFmt, const SwFrmFmt* /*pFirstPageFmt*/)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     const SvxBoxItem& rBox = pFmt->GetBox();
     const SvxBorderLine* pLine = rBox.GetTop();
     if (pLine)
@@ -1269,15 +1184,11 @@ void RtfAttributeOutput::SectionPageBorders(const SwFrmFmt* pFmt, const SwFrmFmt
 
 void RtfAttributeOutput::SectionBiDi(bool bBiDi)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     m_rExport.Strm().WriteCharPtr((bBiDi ? OOO_STRING_SVTOOLS_RTF_RTLSECT : OOO_STRING_SVTOOLS_RTF_LTRSECT));
 }
 
 void RtfAttributeOutput::SectionPageNumbering(sal_uInt16 nNumType, ::boost::optional<sal_uInt16> oPageRestartNumber)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     if (oPageRestartNumber)
     {
         m_aSectionBreaks.append(OOO_STRING_SVTOOLS_RTF_PGNSTARTS);
@@ -1345,8 +1256,6 @@ void RtfAttributeOutput::SectionType(sal_uInt8 nBreakCode)
 
 void RtfAttributeOutput::NumberingDefinition(sal_uInt16 nId, const SwNumRule& /*rRule*/)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     m_rExport.Strm().WriteChar('{').WriteCharPtr(OOO_STRING_SVTOOLS_RTF_LISTOVERRIDE);
     m_rExport.Strm().WriteCharPtr(OOO_STRING_SVTOOLS_RTF_LISTID);
     m_rExport.OutULong(nId);
@@ -1357,8 +1266,6 @@ void RtfAttributeOutput::NumberingDefinition(sal_uInt16 nId, const SwNumRule& /*
 
 void RtfAttributeOutput::StartAbstractNumbering(sal_uInt16 nId)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     m_rExport.Strm().WriteChar('{').WriteCharPtr(OOO_STRING_SVTOOLS_RTF_LIST).WriteCharPtr(OOO_STRING_SVTOOLS_RTF_LISTTEMPLATEID);
     m_rExport.OutULong(nId);
     m_nListId = nId;
@@ -1366,8 +1273,6 @@ void RtfAttributeOutput::StartAbstractNumbering(sal_uInt16 nId)
 
 void RtfAttributeOutput::EndAbstractNumbering()
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     m_rExport.Strm().WriteCharPtr(OOO_STRING_SVTOOLS_RTF_LISTID);
     m_rExport.OutULong(m_nListId).WriteChar('}').WriteCharPtr(SAL_NEWLINE_STRING);
 }
@@ -1386,8 +1291,6 @@ void RtfAttributeOutput::NumberingLevel(sal_uInt8 nLevel,
                                         const OUString& rNumberingString,
                                         const SvxBrushItem* pBrush)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     m_rExport.Strm().WriteCharPtr(SAL_NEWLINE_STRING);
     if (nLevel > 8)  // RTF knows only 9 levels
         m_rExport.Strm().WriteCharPtr(OOO_STRING_SVTOOLS_RTF_IGNORE).WriteCharPtr(OOO_STRING_SVTOOLS_RTF_SOUTLVL);
@@ -1505,8 +1408,6 @@ void RtfAttributeOutput::NumberingLevel(sal_uInt8 nLevel,
 
 void RtfAttributeOutput::WriteField_Impl(const SwField* pFld, ww::eField /*eType*/, const OUString& rFldCmd, sal_uInt8 /*nMode*/)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     // If there are no field instructions, don't export it as a field.
     bool bHasInstructions = !rFldCmd.isEmpty();
     if (bHasInstructions)
@@ -1690,8 +1591,6 @@ void lcl_TextFrameRelativeSize(std::vector< std::pair<OString, OString> >& rFlyP
 
 void RtfAttributeOutput::OutputFlyFrame_Impl(const sw::Frame& rFrame, const Point& /*rNdTopLeft*/)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     const SwNode* pNode = rFrame.GetContent();
     const SwGrfNode* pGrfNode = pNode ? pNode->GetGrfNode() : 0;
 
@@ -2057,8 +1956,6 @@ void RtfAttributeOutput::OutputFlyFrame_Impl(const sw::Frame& rFrame, const Poin
 
 void RtfAttributeOutput::CharCaseMap(const SvxCaseMapItem& rCaseMap)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     switch (rCaseMap.GetValue())
     {
     case SVX_CASEMAP_KAPITAELCHEN:
@@ -2078,8 +1975,6 @@ void RtfAttributeOutput::CharCaseMap(const SvxCaseMapItem& rCaseMap)
 
 void RtfAttributeOutput::CharColor(const SvxColorItem& rColor)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     const Color aColor(rColor.GetValue());
 
     m_aStyles.append(OOO_STRING_SVTOOLS_RTF_CF);
@@ -2088,8 +1983,6 @@ void RtfAttributeOutput::CharColor(const SvxColorItem& rColor)
 
 void RtfAttributeOutput::CharContour(const SvxContourItem& rContour)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     m_aStyles.append(OOO_STRING_SVTOOLS_RTF_OUTL);
     if (!rContour.GetValue())
         m_aStyles.append((sal_Int32)0);
@@ -2097,8 +1990,6 @@ void RtfAttributeOutput::CharContour(const SvxContourItem& rContour)
 
 void RtfAttributeOutput::CharCrossedOut(const SvxCrossedOutItem& rCrossedOut)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     switch (rCrossedOut.GetStrikeout())
     {
     case STRIKEOUT_NONE:
@@ -2120,8 +2011,6 @@ void RtfAttributeOutput::CharCrossedOut(const SvxCrossedOutItem& rCrossedOut)
 
 void RtfAttributeOutput::CharEscapement(const SvxEscapementItem& rEsc)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     short nEsc = rEsc.GetEsc();
     if (rEsc.GetProp() == DFLT_ESC_PROP)
     {
@@ -2179,8 +2068,6 @@ void RtfAttributeOutput::CharEscapement(const SvxEscapementItem& rEsc)
 
 void RtfAttributeOutput::CharFont(const SvxFontItem& rFont)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     m_aStylesEnd.append(OOO_STRING_SVTOOLS_RTF_LOCH);
     m_aStylesEnd.append(OOO_STRING_SVTOOLS_RTF_F);
     m_aStylesEnd.append((sal_Int32)m_rExport.maFontHelper.GetId(rFont));
@@ -2189,8 +2076,6 @@ void RtfAttributeOutput::CharFont(const SvxFontItem& rFont)
 
 void RtfAttributeOutput::CharFontSize(const SvxFontHeightItem& rFontSize)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     switch (rFontSize.Which())
     {
     case RES_CHRATR_FONTSIZE:
@@ -2210,8 +2095,6 @@ void RtfAttributeOutput::CharFontSize(const SvxFontHeightItem& rFontSize)
 
 void RtfAttributeOutput::CharKerning(const SvxKerningItem& rKerning)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     // in quarter points then in twips
     m_aStyles.append(OOO_STRING_SVTOOLS_RTF_EXPND);
     m_aStyles.append((sal_Int32)(rKerning.GetValue() / 5));
@@ -2221,8 +2104,6 @@ void RtfAttributeOutput::CharKerning(const SvxKerningItem& rKerning)
 
 void RtfAttributeOutput::CharLanguage(const SvxLanguageItem& rLanguage)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     switch (rLanguage.Which())
     {
     case RES_CHRATR_LANGUAGE:
@@ -2242,8 +2123,6 @@ void RtfAttributeOutput::CharLanguage(const SvxLanguageItem& rLanguage)
 
 void RtfAttributeOutput::CharPosture(const SvxPostureItem& rPosture)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     m_aStyles.append(OOO_STRING_SVTOOLS_RTF_I);
     if (rPosture.GetPosture() == ITALIC_NONE)
         m_aStyles.append((sal_Int32)0);
@@ -2251,8 +2130,6 @@ void RtfAttributeOutput::CharPosture(const SvxPostureItem& rPosture)
 
 void RtfAttributeOutput::CharShadow(const SvxShadowedItem& rShadow)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     m_aStyles.append(OOO_STRING_SVTOOLS_RTF_SHAD);
     if (!rShadow.GetValue())
         m_aStyles.append((sal_Int32)0);
@@ -2260,8 +2137,6 @@ void RtfAttributeOutput::CharShadow(const SvxShadowedItem& rShadow)
 
 void RtfAttributeOutput::CharUnderline(const SvxUnderlineItem& rUnderline)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     const char* pStr = 0;
     const SfxPoolItem* pItem = m_rExport.HasItem(RES_CHRATR_WORDLINEMODE);
     bool bWord = false;
@@ -2336,8 +2211,6 @@ void RtfAttributeOutput::CharUnderline(const SvxUnderlineItem& rUnderline)
 
 void RtfAttributeOutput::CharWeight(const SvxWeightItem& rWeight)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     m_aStyles.append(OOO_STRING_SVTOOLS_RTF_B);
     if (rWeight.GetWeight() != WEIGHT_BOLD)
         m_aStyles.append((sal_Int32)0);
@@ -2345,24 +2218,18 @@ void RtfAttributeOutput::CharWeight(const SvxWeightItem& rWeight)
 
 void RtfAttributeOutput::CharAutoKern(const SvxAutoKernItem& rAutoKern)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     m_aStyles.append(OOO_STRING_SVTOOLS_RTF_KERNING);
     m_aStyles.append((sal_Int32)(rAutoKern.GetValue() ? 1 : 0));
 }
 
 void RtfAttributeOutput::CharAnimatedText(const SvxBlinkItem& rBlink)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     m_aStyles.append(OOO_STRING_SVTOOLS_RTF_ANIMTEXT);
     m_aStyles.append((sal_Int32)(rBlink.GetValue() ? 2 : 0));
 }
 
 void RtfAttributeOutput::CharBackground(const SvxBrushItem& rBrush)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     if (!rBrush.GetColor().GetTransparency())
     {
         m_aStyles.append(OOO_STRING_SVTOOLS_RTF_CHCBPAT);
@@ -2372,8 +2239,6 @@ void RtfAttributeOutput::CharBackground(const SvxBrushItem& rBrush)
 
 void RtfAttributeOutput::CharFontCJK(const SvxFontItem& rFont)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     m_aStyles.append(OOO_STRING_SVTOOLS_RTF_DBCH);
     m_aStyles.append(OOO_STRING_SVTOOLS_RTF_AF);
     m_aStyles.append((sal_Int32)m_rExport.maFontHelper.GetId(rFont));
@@ -2381,22 +2246,16 @@ void RtfAttributeOutput::CharFontCJK(const SvxFontItem& rFont)
 
 void RtfAttributeOutput::CharFontSizeCJK(const SvxFontHeightItem& rFontSize)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     CharFontSize(rFontSize);
 }
 
 void RtfAttributeOutput::CharLanguageCJK(const SvxLanguageItem& rLanguageItem)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     CharLanguage(rLanguageItem);
 }
 
 void RtfAttributeOutput::CharPostureCJK(const SvxPostureItem& rPosture)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     m_aStyles.append(OOO_STRING_SVTOOLS_RTF_I);
     if (rPosture.GetPosture() == ITALIC_NONE)
         m_aStyles.append((sal_Int32)0);
@@ -2404,8 +2263,6 @@ void RtfAttributeOutput::CharPostureCJK(const SvxPostureItem& rPosture)
 
 void RtfAttributeOutput::CharWeightCJK(const SvxWeightItem& rWeight)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     m_aStyles.append(OOO_STRING_SVTOOLS_RTF_B);
     if (rWeight.GetWeight() != WEIGHT_BOLD)
         m_aStyles.append((sal_Int32)0);
@@ -2413,8 +2270,6 @@ void RtfAttributeOutput::CharWeightCJK(const SvxWeightItem& rWeight)
 
 void RtfAttributeOutput::CharFontCTL(const SvxFontItem& rFont)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     m_aStyles.append(OOO_STRING_SVTOOLS_RTF_DBCH);
     m_aStyles.append(OOO_STRING_SVTOOLS_RTF_AF);
     m_aStyles.append((sal_Int32)m_rExport.maFontHelper.GetId(rFont));
@@ -2422,22 +2277,16 @@ void RtfAttributeOutput::CharFontCTL(const SvxFontItem& rFont)
 
 void RtfAttributeOutput::CharFontSizeCTL(const SvxFontHeightItem& rFontSize)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     CharFontSize(rFontSize);
 }
 
 void RtfAttributeOutput::CharLanguageCTL(const SvxLanguageItem& rLanguageItem)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     CharLanguage(rLanguageItem);
 }
 
 void RtfAttributeOutput::CharPostureCTL(const SvxPostureItem& rPosture)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     m_aStyles.append(OOO_STRING_SVTOOLS_RTF_AI);
     if (rPosture.GetPosture() == ITALIC_NONE)
         m_aStyles.append((sal_Int32)0);
@@ -2445,8 +2294,6 @@ void RtfAttributeOutput::CharPostureCTL(const SvxPostureItem& rPosture)
 
 void RtfAttributeOutput::CharWeightCTL(const SvxWeightItem& rWeight)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     m_aStyles.append(OOO_STRING_SVTOOLS_RTF_AB);
     if (rWeight.GetWeight() != WEIGHT_BOLD)
         m_aStyles.append((sal_Int32)0);
@@ -2462,16 +2309,12 @@ void RtfAttributeOutput::CharIdctHint(const SfxPoolItem&)
 
 void RtfAttributeOutput::CharRotate(const SvxCharRotateItem& rRotate)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     m_aStyles.append(OOO_STRING_SVTOOLS_RTF_HORZVERT);
     m_aStyles.append((sal_Int32)(rRotate.IsFitToLine() ? 1 : 0));
 }
 
 void RtfAttributeOutput::CharEmphasisMark(const SvxEmphasisMarkItem& rEmphasisMark)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     const sal_Char* pStr;
     switch (rEmphasisMark.GetEmphasisMark())
     {
@@ -2490,8 +2333,6 @@ void RtfAttributeOutput::CharEmphasisMark(const SvxEmphasisMarkItem& rEmphasisMa
 
 void RtfAttributeOutput::CharTwoLines(const SvxTwoLinesItem& rTwoLines)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     if (rTwoLines.GetValue())
     {
         sal_Unicode cStart = rTwoLines.GetStartBracket();
@@ -2516,16 +2357,12 @@ void RtfAttributeOutput::CharTwoLines(const SvxTwoLinesItem& rTwoLines)
 
 void RtfAttributeOutput::CharScaleWidth(const SvxCharScaleWidthItem& rScaleWidth)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     m_aStyles.append(OOO_STRING_SVTOOLS_RTF_CHARSCALEX);
     m_aStyles.append((sal_Int32)rScaleWidth.GetValue());
 }
 
 void RtfAttributeOutput::CharRelief(const SvxCharReliefItem& rRelief)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     const sal_Char* pStr;
     switch (rRelief.GetValue())
     {
@@ -2546,8 +2383,6 @@ void RtfAttributeOutput::CharRelief(const SvxCharReliefItem& rRelief)
 
 void RtfAttributeOutput::CharHidden(const SvxCharHiddenItem& rHidden)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     m_aStyles.append(OOO_STRING_SVTOOLS_RTF_V);
     if (!rHidden.GetValue())
         m_aStyles.append((sal_Int32)0);
@@ -2555,15 +2390,11 @@ void RtfAttributeOutput::CharHidden(const SvxCharHiddenItem& rHidden)
 
 void RtfAttributeOutput::CharBorder(const SvxBorderLine* pAllBorder, const sal_uInt16 nDist, const bool bShadow)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     m_aStyles.append(OutBorderLine(m_rExport, pAllBorder, OOO_STRING_SVTOOLS_RTF_CHBRDR, nDist, bShadow ? SVX_SHADOW_BOTTOMRIGHT : SVX_SHADOW_NONE));
 }
 
 void RtfAttributeOutput::TextINetFormat(const SwFmtINetFmt& rURL)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     if (!rURL.GetValue().isEmpty())
     {
         const SwCharFmt* pFmt;
@@ -2583,8 +2414,6 @@ void RtfAttributeOutput::TextINetFormat(const SwFmtINetFmt& rURL)
 
 void RtfAttributeOutput::TextCharFormat(const SwFmtCharFmt& rCharFmt)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     sal_uInt16 nStyle = m_rExport.GetId(*rCharFmt.GetCharFmt());
     m_aStyles.append(OOO_STRING_SVTOOLS_RTF_CS);
     m_aStyles.append((sal_Int32)nStyle);
@@ -2643,8 +2472,6 @@ void RtfAttributeOutput::TextFootnote_Impl(const SwFmtFtn& rFootnote)
 
 void RtfAttributeOutput::ParaLineSpacing_Impl(short nSpace, short nMulti)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     m_aStyles.append(OOO_STRING_SVTOOLS_RTF_SL);
     m_aStyles.append((sal_Int32)nSpace);
     m_aStyles.append(OOO_STRING_SVTOOLS_RTF_SLMULT);
@@ -2654,8 +2481,6 @@ void RtfAttributeOutput::ParaLineSpacing_Impl(short nSpace, short nMulti)
 
 void RtfAttributeOutput::ParaAdjust(const SvxAdjustItem& rAdjust)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     switch (rAdjust.GetAdjust())
     {
     case SVX_ADJUST_LEFT:
@@ -2678,16 +2503,12 @@ void RtfAttributeOutput::ParaAdjust(const SvxAdjustItem& rAdjust)
 
 void RtfAttributeOutput::ParaSplit(const SvxFmtSplitItem& rSplit)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     if (!rSplit.GetValue())
         m_aStyles.append(OOO_STRING_SVTOOLS_RTF_KEEP);
 }
 
 void RtfAttributeOutput::ParaWidows(const SvxWidowsItem& rWidows)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     if (rWidows.GetValue())
         m_aStyles.append(OOO_STRING_SVTOOLS_RTF_WIDCTLPAR);
     else
@@ -2696,8 +2517,6 @@ void RtfAttributeOutput::ParaWidows(const SvxWidowsItem& rWidows)
 
 void RtfAttributeOutput::ParaTabStop(const SvxTabStopItem& rTabStop)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     long nOffset = ((SvxLRSpaceItem&)m_rExport.GetItem(RES_LR_SPACE)).GetTxtLeft();
     for (sal_uInt16 n = 0; n < rTabStop.Count(); n++)
     {
@@ -2758,8 +2577,6 @@ void RtfAttributeOutput::ParaTabStop(const SvxTabStopItem& rTabStop)
 
 void RtfAttributeOutput::ParaHyphenZone(const SvxHyphenZoneItem& rHyphenZone)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     sal_Int32 nFlags = rHyphenZone.IsHyphen() ? 1 : 0;
     if (rHyphenZone.IsPageEnd())
         nFlags += 2;
@@ -2778,8 +2595,6 @@ void RtfAttributeOutput::ParaHyphenZone(const SvxHyphenZoneItem& rHyphenZone)
 
 void RtfAttributeOutput::ParaNumRule_Impl(const SwTxtNode* pTxtNd, sal_Int32 nLvl, sal_Int32 nNumId)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     if (USHRT_MAX == nNumId || 0 == nNumId || 0 == pTxtNd)
         return;
 
@@ -2851,8 +2666,6 @@ void RtfAttributeOutput::ParaNumRule_Impl(const SwTxtNode* pTxtNd, sal_Int32 nLv
 
 void RtfAttributeOutput::ParaScriptSpace(const SfxBoolItem& rScriptSpace)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     if (!rScriptSpace.GetValue())
         return;
 
@@ -2871,8 +2684,6 @@ void RtfAttributeOutput::ParaForbiddenRules(const SfxBoolItem&)
 
 void RtfAttributeOutput::ParaVerticalAlign(const SvxParaVertAlignItem& rAlign)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     const char* pStr;
     switch (rAlign.GetValue())
     {
@@ -2903,8 +2714,6 @@ void RtfAttributeOutput::ParaSnapToGrid(const SvxParaGridItem& /*rGrid*/)
 
 void RtfAttributeOutput::FormatFrameSize(const SwFmtFrmSize& rSize)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     if (m_rExport.bOutPageDescs)
     {
         m_aSectionBreaks.append(OOO_STRING_SVTOOLS_RTF_PGWSXN);
@@ -2923,8 +2732,6 @@ void RtfAttributeOutput::FormatPaperBin(const SvxPaperBinItem&)
 
 void RtfAttributeOutput::FormatLRSpace(const SvxLRSpaceItem& rLRSpace)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     if (!m_rExport.bOutFlyFrmAttrs)
     {
         if (m_rExport.bOutPageDescs)
@@ -2966,8 +2773,6 @@ void RtfAttributeOutput::FormatLRSpace(const SvxLRSpaceItem& rLRSpace)
 
 void RtfAttributeOutput::FormatULSpace(const SvxULSpaceItem& rULSpace)
 {
-    SAL_INFO("sw.rtf", OSL_THIS_FUNC);
-
     if (!m_rExport.bOutFlyFrmAttrs)
     {
         if (m_rExport.bOutPageDescs)
@@ -3022,8 +2827,6 @@ void RtfAttributeOutput::FormatULSpace(const SvxULSpaceItem& rULSpace)
 
 void RtfAttributeOutput::FormatSurround(const SwFmtSurround& rSurround)
 {

... etc. - the rest is truncated


More information about the Libreoffice-commits mailing list