[Libreoffice-commits] .: binfilter/bf_sc binfilter/bf_svx binfilter/bf_sw binfilter/binfilterdetect binfilter/inc

Norbert Thiebaud nthiebaud at kemper.freedesktop.org
Tue Nov 2 16:17:30 PDT 2010


 binfilter/bf_sc/source/ui/view/sc_viewdata.cxx   |   20 -
 binfilter/bf_svx/source/items/svx_algitem.cxx    |   13 -
 binfilter/bf_svx/source/items/svx_drawitem.cxx   |   20 -
 binfilter/bf_svx/source/items/svx_flditem.cxx    |   28 +-
 binfilter/bf_svx/source/items/svx_hlnkitem.cxx   |   57 ----
 binfilter/bf_svx/source/items/svx_pageitem.cxx   |   19 -
 binfilter/bf_svx/source/xoutdev/svx_xattr.cxx    |  270 ++++++++++-----------
 binfilter/bf_sw/source/core/fields/sw_expfld.cxx |    4 
 binfilter/bf_sw/source/core/inc/frame.hxx        |    2 
 binfilter/bf_sw/source/core/text/itrtxt.hxx      |   20 -
 binfilter/bf_sw/source/core/text/porexp.hxx      |    2 
 binfilter/bf_sw/source/core/text/porfld.hxx      |   14 -
 binfilter/bf_sw/source/core/text/porfly.hxx      |    4 
 binfilter/bf_sw/source/core/text/portxt.hxx      |    4 
 binfilter/bf_sw/source/core/text/possiz.hxx      |    4 
 binfilter/binfilterdetect/source/bindetect.cxx   |  286 +++++++++++------------
 binfilter/inc/bf_sch/chtmodel.hxx                |    4 
 binfilter/inc/bf_sfx2/bitset.hxx                 |   20 -
 binfilter/inc/bf_svx/svdobj.hxx                  |    2 
 binfilter/inc/bf_svx/svdotext.hxx                |    2 
 binfilter/inc/bf_svx/svdpage.hxx                 |    4 
 binfilter/inc/bf_svx/svdpntv.hxx                 |   24 -
 binfilter/inc/bf_sw/crsrsh.hxx                   |    4 
 binfilter/inc/bf_sw/doc.hxx                      |    6 
 binfilter/inc/bf_sw/fldbas.hxx                   |    4 
 binfilter/inc/bf_sw/swcrsr.hxx                   |    4 
 binfilter/inc/bf_sw/unoobj.hxx                   |   52 ----
 binfilter/inc/bf_sw/viewsh.hxx                   |    4 
 28 files changed, 407 insertions(+), 490 deletions(-)

New commits:
commit e6a7ffd4dac6cf7bc113ca4e042dab4e1e8b574a
Author: Norbert Thiebaud <nthiebaud at gmail.com>
Date:   Tue Nov 2 18:11:26 2010 -0500

    binfilters: 2808 warnings killed, 24220 to go....

diff --git a/binfilter/bf_sc/source/ui/view/sc_viewdata.cxx b/binfilter/bf_sc/source/ui/view/sc_viewdata.cxx
index c9b8b95..1010f4f 100644
--- a/binfilter/bf_sc/source/ui/view/sc_viewdata.cxx
+++ b/binfilter/bf_sc/source/ui/view/sc_viewdata.cxx
@@ -69,16 +69,16 @@ USHORT nEditAdjust = SVX_ADJUST_LEFT;		//! Member !!!
 //==================================================================
 
 /*N*/ ScViewDataTable::ScViewDataTable() :
-/*N*/ 				nCurX( 0 ),
-/*N*/ 				nCurY( 0 ),
-/*N*/ 				bOldCurValid( FALSE ),
 /*N*/ 				eHSplitMode( SC_SPLIT_NONE ),
 /*N*/ 				eVSplitMode( SC_SPLIT_NONE ),
+/*N*/ 				eWhichActive( SC_SPLIT_BOTTOMLEFT ),
 /*N*/ 				nHSplitPos( 0 ),
 /*N*/ 				nVSplitPos( 0 ),
 /*N*/ 				nFixPosX( 0 ),
 /*N*/ 				nFixPosY( 0 ),
-/*N*/ 				eWhichActive( SC_SPLIT_BOTTOMLEFT )
+/*N*/ 				nCurX( 0 ),
+/*N*/ 				nCurY( 0 ),
+/*N*/ 				bOldCurValid( FALSE )
 /*N*/ {
 /*N*/ 	nPosX[0]=nPosX[1]=
 /*N*/ 	nPosY[0]=nPosY[1]=0;
@@ -614,9 +614,9 @@ void ScViewData::ReadUserData(const String& rData)
 /*N*/ 					{
 /*N*/ 						uno::Sequence <beans::PropertyValue> aTableViewSettings;
 /*N*/ 						pTabData[nTab]->WriteUserDataSequence(aTableViewSettings);
-/*N*/ 						String sName;
-/*N*/ 						GetDocument()->GetName( nTab, sName );
-/*N*/ 						::rtl::OUString sOUName(sName);
+/*N*/ 						String _sName;
+/*N*/ 						GetDocument()->GetName( nTab, _sName );
+/*N*/ 						::rtl::OUString sOUName(_sName);
 /*N*/ 						uno::Any aAny;
 /*N*/ 						aAny <<= aTableViewSettings;
 /*N*/                         try
@@ -714,13 +714,13 @@ void ScViewData::ReadUserDataSequence(const uno::Sequence <beans::PropertyValue>
             if ((rSettings[i].Value >>= xNameContainer) && xNameContainer->hasElements())
             {
                 uno::Sequence< ::rtl::OUString > aNames(xNameContainer->getElementNames());
-                for (sal_Int32 i = 0; i < aNames.getLength(); i++)
+                for (sal_Int32 j = 0; j < aNames.getLength(); j++)
                 {
-                    String sTabName(aNames[i]);
+                    String sTabName(aNames[j]);
                     sal_uInt16 nTab(0);
                     if (GetDocument()->GetTable(sTabName, nTab))
                     {
-                        uno::Any aAny = xNameContainer->getByName(aNames[i]);
+                        uno::Any aAny = xNameContainer->getByName(aNames[j]);
                         uno::Sequence<beans::PropertyValue> aTabSettings;
                         if (aAny >>= aTabSettings)
                         {
diff --git a/binfilter/bf_svx/source/items/svx_algitem.cxx b/binfilter/bf_svx/source/items/svx_algitem.cxx
index 7adbd71..cd871e7 100644
--- a/binfilter/bf_svx/source/items/svx_algitem.cxx
+++ b/binfilter/bf_svx/source/items/svx_algitem.cxx
@@ -79,7 +79,7 @@ using namespace ::com::sun::star;
 
 /*N*/ bool SvxHorJustifyItem::QueryValue( uno::Any& rVal, BYTE nMemberId ) const
 /*N*/ {
-/*N*/     sal_Bool bConvert = 0!=(nMemberId&CONVERT_TWIPS);
+/*N*/
 /*N*/     nMemberId &= ~CONVERT_TWIPS;
 /*N*/ 	switch ( nMemberId )
 /*N*/ 	{
@@ -123,7 +123,7 @@ using namespace ::com::sun::star;
 
 /*N*/ bool SvxHorJustifyItem::PutValue( const uno::Any& rVal, BYTE nMemberId )
 /*N*/ {
-/*N*/     sal_Bool bConvert = 0!=(nMemberId&CONVERT_TWIPS);
+
 /*N*/     nMemberId &= ~CONVERT_TWIPS;
 /*N*/ 	switch ( nMemberId )
 /*N*/ 	{
@@ -146,6 +146,7 @@ using namespace ::com::sun::star;
 /*N*/ 					case table::CellHoriJustify_RIGHT:	  eSvx = SVX_HOR_JUSTIFY_RIGHT;	   break;
 /*N*/ 					case table::CellHoriJustify_BLOCK:	  eSvx = SVX_HOR_JUSTIFY_BLOCK;	   break;
 /*?*/ 					case table::CellHoriJustify_REPEAT:   eSvx = SVX_HOR_JUSTIFY_REPEAT;   break;
+                        default: break;
 /*N*/ 				}
 /*N*/ 				SetValue( eSvx );
 /*N*/ 			}
@@ -225,7 +226,7 @@ using namespace ::com::sun::star;
 /*N*/ 	return sal_True;
 /*N*/ }
 
-/*N*/ bool SvxVerJustifyItem::PutValue( const uno::Any& rVal, BYTE nMemberId )
+/*N*/ bool SvxVerJustifyItem::PutValue( const uno::Any& rVal, BYTE /*nMemberId*/ )
 /*N*/ {
 /*N*/ 	table::CellVertJustify eUno;
 /*N*/ 	if(!(rVal >>= eUno))
@@ -243,6 +244,7 @@ using namespace ::com::sun::star;
 /*N*/ 		case table::CellVertJustify_TOP:	   eSvx = SVX_VER_JUSTIFY_TOP;	  	break;
 /*N*/ 		case table::CellVertJustify_CENTER:   eSvx = SVX_VER_JUSTIFY_CENTER;	break;
 /*N*/ 		case table::CellVertJustify_BOTTOM:   eSvx = SVX_VER_JUSTIFY_BOTTOM;	break;
+            default: break;
 /*N*/ 	}
 /*N*/ 	SetValue( eSvx );
 /*N*/ 
@@ -288,7 +290,7 @@ using namespace ::com::sun::star;
 
 //------------------------------------------------------------------------
 
-/*N*/ bool SvxOrientationItem::QueryValue( uno::Any& rVal, BYTE nMemberId ) const
+/*N*/ bool SvxOrientationItem::QueryValue( uno::Any& rVal, BYTE /*nMemberId*/ ) const
 /*N*/ {
 /*N*/ 	table::CellOrientation eUno = table::CellOrientation_STANDARD;
 /*N*/ 	switch ( (SvxCellOrientation)GetValue() )
@@ -319,6 +321,7 @@ using namespace ::com::sun::star;
 /*?*/ 		case table::CellOrientation_TOPBOTTOM:	eSvx = SVX_ORIENTATION_TOPBOTTOM; break;
 /*?*/ 		case table::CellOrientation_BOTTOMTOP:	eSvx = SVX_ORIENTATION_BOTTOMTOP; break;
 /*N*/ 		case table::CellOrientation_STACKED:	eSvx = SVX_ORIENTATION_STACKED;	  break;
+            default: break;
 /*N*/ 	}
 /*N*/ 	SetValue( eSvx );
 /*N*/ 	return sal_True;
@@ -431,7 +434,7 @@ using namespace ::com::sun::star;
 
 //------------------------------------------------------------------------
 
-/*N*/ SvStream& SvxMarginItem::Store( SvStream &rStream, USHORT nItemVersion) const
+/*N*/ SvStream& SvxMarginItem::Store( SvStream &rStream, USHORT /*nItemVersion*/) const
 /*N*/ {
 /*N*/ 	rStream << nLeftMargin;
 /*N*/ 	rStream << nTopMargin;
diff --git a/binfilter/bf_svx/source/items/svx_drawitem.cxx b/binfilter/bf_svx/source/items/svx_drawitem.cxx
index 41141f0..7faff35 100644
--- a/binfilter/bf_svx/source/items/svx_drawitem.cxx
+++ b/binfilter/bf_svx/source/items/svx_drawitem.cxx
@@ -87,9 +87,9 @@ namespace binfilter {
 
 // -----------------------------------------------------------------------
 
-/*?*/ int SvxColorTableItem::operator==( const SfxPoolItem& rItem ) const
+/*?*/ int SvxColorTableItem::operator==( const SfxPoolItem& /*rItem*/ ) const
 /*?*/ {
-/*?*/ DBG_BF_ASSERT(0, "STRIP"); return 0;//STRIP001 	DBG_ASSERT( SfxPoolItem::operator==( rItem ), "unequal type" );
+/*?*/ DBG_BF_ASSERT(0, "STRIP"); return 0;
 /*?*/ }
 
 // -----------------------------------------------------------------------
@@ -130,9 +130,9 @@ namespace binfilter {
 
 // -----------------------------------------------------------------------
 
-/*?*/ int SvxGradientListItem::operator==( const SfxPoolItem& rItem ) const
+/*?*/ int SvxGradientListItem::operator==( const SfxPoolItem& /*rItem*/ ) const
 /*?*/ {
-/*?*/ DBG_BF_ASSERT(0, "STRIP"); return 0;//STRIP001 	DBG_ASSERT( SfxPoolItem::operator==( rItem ), "unequal type" );
+/*?*/ DBG_BF_ASSERT(0, "STRIP"); return 0;
 /*?*/ }
 
 // -----------------------------------------------------------------------
@@ -173,9 +173,9 @@ namespace binfilter {
 
 // -----------------------------------------------------------------------
 
-/*?*/ int SvxHatchListItem::operator==( const SfxPoolItem& rItem ) const
+/*?*/ int SvxHatchListItem::operator==( const SfxPoolItem& /*rItem*/ ) const
 /*?*/ {
-/*?*/ DBG_BF_ASSERT(0, "STRIP"); return 0;//STRIP001 	DBG_ASSERT( SfxPoolItem::operator==( rItem ), "unequal type" );
+/*?*/ DBG_BF_ASSERT(0, "STRIP"); return 0;
 /*?*/ }
 
 // -----------------------------------------------------------------------
@@ -216,9 +216,9 @@ namespace binfilter {
 
 // -----------------------------------------------------------------------
 
-/*?*/ int SvxBitmapListItem::operator==( const SfxPoolItem& rItem ) const
+/*?*/ int SvxBitmapListItem::operator==( const SfxPoolItem& /*rItem*/ ) const
 /*?*/ {
-/*?*/ DBG_BF_ASSERT(0, "STRIP"); return 0;//STRIP001 	DBG_ASSERT( SfxPoolItem::operator==( rItem ), "unequal type" );
+/*?*/ DBG_BF_ASSERT(0, "STRIP"); return 0;
 /*?*/ }
 
 // -----------------------------------------------------------------------
@@ -260,9 +260,9 @@ namespace binfilter {
 
 // -----------------------------------------------------------------------
 
-/*?*/ int SvxDashListItem::operator==( const SfxPoolItem& rItem ) const
+/*?*/ int SvxDashListItem::operator==( const SfxPoolItem& /*rItem*/ ) const
 /*?*/ {
-/*?*/ DBG_BF_ASSERT(0, "STRIP"); return 0;//STRIP001 	DBG_ASSERT( SfxPoolItem::operator==( rItem ), "unequal type" );
+/*?*/ DBG_BF_ASSERT(0, "STRIP"); return 0;
 /*?*/ }
 
 // -----------------------------------------------------------------------
diff --git a/binfilter/bf_svx/source/items/svx_flditem.cxx b/binfilter/bf_svx/source/items/svx_flditem.cxx
index ba88c09..b25d662 100644
--- a/binfilter/bf_svx/source/items/svx_flditem.cxx
+++ b/binfilter/bf_svx/source/items/svx_flditem.cxx
@@ -81,7 +81,7 @@ namespace binfilter {
 
 // -----------------------------------------------------------------------
 
-/*N*/ int SvxFieldData::operator==( const SvxFieldData& rFld ) const
+/*N*/ int SvxFieldData::operator==( const SvxFieldData& /*rFld*/ ) const
 /*N*/ {
 /*N*/ 	DBG_ASSERT( Type() == rFld.Type(), "==: Verschiedene Typen" );
 /*N*/ 	return TRUE;	// Basicklasse immer gleich.
@@ -89,13 +89,13 @@ namespace binfilter {
 
 // -----------------------------------------------------------------------
 
-/*N*/ void SvxFieldData::Load( SvPersistStream & rStm )
+/*N*/ void SvxFieldData::Load( SvPersistStream & /*rStm*/ )
 /*N*/ {
 /*N*/ }
 
 // -----------------------------------------------------------------------
 
-/*N*/ void SvxFieldData::Save( SvPersistStream & rStm )
+/*N*/ void SvxFieldData::Save( SvPersistStream & /*rStm*/ )
 /*N*/ {
 /*N*/ }
 
@@ -167,7 +167,7 @@ namespace binfilter {
 
 // -----------------------------------------------------------------------
 
-/*N*/ SvStream& SvxFieldItem::Store( SvStream& rStrm, USHORT nItemVersion ) const
+/*N*/ SvStream& SvxFieldItem::Store( SvStream& rStrm, USHORT /*nItemVersion*/ ) const
 /*N*/ {
 /*N*/ 	DBG_ASSERT( pField, "SvxFieldItem::Store: Feld?!" );
 /*N*/ 	SvPersistStream aPStrm( GetClassManager(), &rStrm );
@@ -404,11 +404,11 @@ namespace binfilter {
 /*N*/ 	return ( rCmp.Type() == TYPE(SvxPageField) );
 /*N*/ }
 
-/*N*/ void __EXPORT SvxPageField::Load( SvPersistStream & rStm )
+/*N*/ void __EXPORT SvxPageField::Load( SvPersistStream & /*rStm*/ )
 /*N*/ {
 /*N*/ }
 
-/*N*/ void __EXPORT SvxPageField::Save( SvPersistStream & rStm )
+/*N*/ void __EXPORT SvxPageField::Save( SvPersistStream & /*rStm*/ )
 /*N*/ {
 /*N*/ }
 
@@ -426,11 +426,11 @@ namespace binfilter {
 /*N*/ 	return ( rCmp.Type() == TYPE(SvxPagesField) );
 /*N*/ }
 
-/*N*/ void __EXPORT SvxPagesField::Load( SvPersistStream & rStm )
+/*N*/ void __EXPORT SvxPagesField::Load( SvPersistStream & /*rStm*/ )
 /*N*/ {
 /*N*/ }
 
-/*N*/ void __EXPORT SvxPagesField::Save( SvPersistStream & rStm )
+/*N*/ void __EXPORT SvxPagesField::Save( SvPersistStream & /*rStm*/ )
 /*N*/ {
 /*N*/ }
 
@@ -446,11 +446,11 @@ namespace binfilter {
 /*N*/ 	return ( rCmp.Type() == TYPE(SvxTimeField) );
 /*N*/ }
 
-/*N*/ void __EXPORT SvxTimeField::Load( SvPersistStream & rStm )
+/*N*/ void __EXPORT SvxTimeField::Load( SvPersistStream & /*rStm*/ )
 /*N*/ {
 /*N*/ }
 
-/*N*/ void __EXPORT SvxTimeField::Save( SvPersistStream & rStm )
+/*N*/ void __EXPORT SvxTimeField::Save( SvPersistStream & /*rStm*/ )
 /*N*/ {
 /*N*/ }
 
@@ -467,11 +467,11 @@ namespace binfilter {
 /*N*/ 	return ( rCmp.Type() == TYPE(SvxFileField) );
 /*N*/ }
 
-/*N*/ void __EXPORT SvxFileField::Load( SvPersistStream & rStm )
+/*N*/ void __EXPORT SvxFileField::Load( SvPersistStream & /*rStm*/ )
 /*N*/ {
 /*N*/ }
 
-/*N*/ void __EXPORT SvxFileField::Save( SvPersistStream & rStm )
+/*N*/ void __EXPORT SvxFileField::Save( SvPersistStream & /*rStm*/ )
 /*N*/ {
 /*N*/ }
 
@@ -487,11 +487,11 @@ namespace binfilter {
 /*N*/ 	return ( rCmp.Type() == TYPE(SvxTableField) );
 /*N*/ }
 
-/*N*/ void __EXPORT SvxTableField::Load( SvPersistStream & rStm )
+/*N*/ void __EXPORT SvxTableField::Load( SvPersistStream & /*rStm*/ )
 /*N*/ {
 /*N*/ }
 
-/*N*/ void __EXPORT SvxTableField::Save( SvPersistStream & rStm )
+/*N*/ void __EXPORT SvxTableField::Save( SvPersistStream & /*rStm*/ )
 /*N*/ {
 /*N*/ }
 
diff --git a/binfilter/bf_svx/source/items/svx_hlnkitem.cxx b/binfilter/bf_svx/source/items/svx_hlnkitem.cxx
index ff27a68..df35c6d 100644
--- a/binfilter/bf_svx/source/items/svx_hlnkitem.cxx
+++ b/binfilter/bf_svx/source/items/svx_hlnkitem.cxx
@@ -2,7 +2,7 @@
 /*************************************************************************
  *
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- * 
+ *
  * Copyright 2000, 2010 Oracle and/or its affiliates.
  *
  * OpenOffice.org - a multi-platform office productivity suite
@@ -42,62 +42,25 @@ namespace binfilter {
 
 // -----------------------------------------------------------------------
 
-/*N*/ TYPEINIT1_AUTOFACTORY(SvxHyperlinkItem, SfxPoolItem);
+TYPEINIT1_AUTOFACTORY(SvxHyperlinkItem, SfxPoolItem);
 
 // class SvxHyperlinkItem ------------------------------------------------
 
-/*--------------------------------------------------------------------
-    Beschreibung:
- --------------------------------------------------------------------*/
-
 #define HYPERLINKFF_MARKER	0x599401FE
 
+SfxPoolItem* SvxHyperlinkItem::Clone( SfxItemPool* ) const
+{
+    DBG_BF_ASSERT(0, "STRIP"); return NULL;
+}
 
 /*--------------------------------------------------------------------
     Beschreibung:
  --------------------------------------------------------------------*/
 
-
-/*--------------------------------------------------------------------
-    Beschreibung:
- --------------------------------------------------------------------*/
-
-
-/*--------------------------------------------------------------------
-    Beschreibung:
- --------------------------------------------------------------------*/
-
-
-/*--------------------------------------------------------------------
-    Beschreibung:
- --------------------------------------------------------------------*/
-
-/*?*/ SfxPoolItem* SvxHyperlinkItem::Clone( SfxItemPool* ) const
-/*?*/ {
-/*?*/ DBG_BF_ASSERT(0, "STRIP"); return NULL;//STRIP001 	return new SvxHyperlinkItem( *this );
-/*?*/ }
-
-/*--------------------------------------------------------------------
-    Beschreibung:
- --------------------------------------------------------------------*/
-
-/*?*/ int SvxHyperlinkItem::operator==( const SfxPoolItem& rAttr ) const
-/*?*/ {
-/*?*/ DBG_BF_ASSERT(0, "STRIP"); return 0;//STRIP001 //STRIP001 	DBG_ASSERT( SfxPoolItem::operator==(rAttr), "unterschiedliche Typen" );
-/*?*/ }
-
-
-/*--------------------------------------------------------------------
-    Beschreibung:
- --------------------------------------------------------------------*/
-
-
-/*--------------------------------------------------------------------
-    Beschreibung:
- --------------------------------------------------------------------*/
-
-
-
+int SvxHyperlinkItem::operator==( const SfxPoolItem& /*rAttr*/ ) const
+{
+    DBG_BF_ASSERT(0, "STRIP"); return 0;
+}
 
 }
 
diff --git a/binfilter/bf_svx/source/items/svx_pageitem.cxx b/binfilter/bf_svx/source/items/svx_pageitem.cxx
index 45c630e..b98cd0d 100644
--- a/binfilter/bf_svx/source/items/svx_pageitem.cxx
+++ b/binfilter/bf_svx/source/items/svx_pageitem.cxx
@@ -83,7 +83,7 @@ using namespace ::com::sun::star;
     Beschreibung: Clonen
  --------------------------------------------------------------------*/
 
-/*N*/ SfxPoolItem* SvxPageItem::Clone( SfxItemPool *pPool ) const
+/*N*/ SfxPoolItem* SvxPageItem::Clone( SfxItemPool* /*pPool*/ ) const
 /*N*/ {
 /*N*/ 	return new SvxPageItem( *this );
 /*N*/ }
@@ -120,7 +120,7 @@ using namespace ::com::sun::star;
 //------------------------------------------------------------------------
 /*N*/ bool SvxPageItem::QueryValue( uno::Any& rVal, BYTE nMemberId ) const
 /*N*/ {
-/*N*/     sal_Bool bConvert = 0!=(nMemberId&CONVERT_TWIPS);
+/*N*/
 /*N*/     nMemberId &= ~CONVERT_TWIPS;
 /*N*/ 	switch( nMemberId )
 /*N*/ 	{
@@ -188,7 +188,8 @@ using namespace ::com::sun::star;
 /*N*/ 				case style::PageStyleLayout_RIGHT   : eUse |= SVX_PAGE_RIGHT; break;
 /*?*/ 				case style::PageStyleLayout_ALL     : eUse |= SVX_PAGE_ALL  ; break;
 /*N*/ 				case style::PageStyleLayout_MIRRORED: eUse |= SVX_PAGE_MIRROR;break;
-/*N*/ 			}
+                    default: break;
+                }
 /*N*/ 		}
 /*N*/ 		break;
 /*N*/ 	}
@@ -221,7 +222,7 @@ using namespace ::com::sun::star;
 
 //------------------------------------------------------------------------
 
-/*N*/ SvStream& SvxPageItem::Store( SvStream &rStrm, USHORT nItemVersion ) const
+/*N*/ SvStream& SvxPageItem::Store( SvStream &rStrm, USHORT /*nItemVersion*/ ) const
 /*N*/ {
 /*N*/ 	// UNICODE: rStrm << aDescName;
 /*N*/ 	rStrm.WriteByteString(aDescName);
@@ -247,7 +248,7 @@ using namespace ::com::sun::star;
 /*N*/ }
 
 
-/*N*/ SfxPoolItem* SvxSetItem::Clone( SfxItemPool *pPool ) const
+/*N*/ SfxPoolItem* SvxSetItem::Clone( SfxItemPool* /*pPool*/ ) const
 /*N*/ {
 /*N*/ 	return new SvxSetItem(*this);
 /*N*/ }
@@ -255,14 +256,14 @@ using namespace ::com::sun::star;
 //------------------------------------------------------------------------
 
 
-/*N*/ SfxPoolItem* SvxSetItem::Create(SvStream &rStrm, USHORT nVersion) const
+/*N*/ SfxPoolItem* SvxSetItem::Create(SvStream &rStrm, USHORT /*nVersion*/) const
 /*N*/ {
-/*N*/ 	SfxItemSet* pSet = new SfxItemSet( *GetItemSet().GetPool(),
+/*N*/ 	SfxItemSet* _pSet = new SfxItemSet( *GetItemSet().GetPool(),
 /*N*/ 									   GetItemSet().GetRanges() );
 /*N*/ 
-/*N*/ 	pSet->Load( rStrm );
+/*N*/ 	_pSet->Load( rStrm );
 /*N*/ 
-/*N*/ 	return new SvxSetItem( Which(), *pSet );
+/*N*/ 	return new SvxSetItem( Which(), *_pSet );
 /*N*/ }
 
 /*N*/ SvStream& SvxSetItem::Store(SvStream &rStrm, USHORT nItemVersion) const
diff --git a/binfilter/bf_svx/source/xoutdev/svx_xattr.cxx b/binfilter/bf_svx/source/xoutdev/svx_xattr.cxx
index 4c909e9..8c82c15 100644
--- a/binfilter/bf_svx/source/xoutdev/svx_xattr.cxx
+++ b/binfilter/bf_svx/source/xoutdev/svx_xattr.cxx
@@ -188,7 +188,7 @@ XubString aNameOrIndexEmptyString;
     Argument pPool2 can be null.
     If returned string equals NameOrIndex->GetName(), the name was already unique.
 */
-/*N*/ String NameOrIndex::CheckNamedItem( const NameOrIndex* pCheckItem, const sal_uInt16 nWhich, const SfxItemPool* pPool1, const SfxItemPool* pPool2, SvxCompareValueFunc pCompareValueFunc, USHORT nPrefixResId, XPropertyList* pDefaults )
+/*N*/ String NameOrIndex::CheckNamedItem( const NameOrIndex* pCheckItem, const sal_uInt16 nWhich, const SfxItemPool* pPool1, const SfxItemPool* /*pPool2*/, SvxCompareValueFunc pCompareValueFunc, USHORT nPrefixResId, XPropertyList* pDefaults )
 /*N*/ {
 /*N*/ 	sal_Bool bForceNew = sal_False;
 /*N*/ 
@@ -362,7 +362,7 @@ XubString aNameOrIndexEmptyString;
 |*
 \************************************************************************/
 
-/*N*/ SfxPoolItem* XColorItem::Clone(SfxItemPool* pPool) const
+/*N*/ SfxPoolItem* XColorItem::Clone(SfxItemPool* /*pPool*/) const
 /*N*/ {
 /*N*/ 	return new XColorItem(*this);
 /*N*/ }
@@ -385,7 +385,7 @@ XubString aNameOrIndexEmptyString;
 |*
 \************************************************************************/
 
-/*N*/ SfxPoolItem* XColorItem::Create(SvStream& rIn, USHORT nVer) const
+/*N*/ SfxPoolItem* XColorItem::Create(SvStream& rIn, USHORT /*nVer*/) const
 /*N*/ {
 /*N*/ 	return new XColorItem(Which(), rIn);
 /*N*/ }
@@ -423,13 +423,13 @@ XubString aNameOrIndexEmptyString;
 /*N*/ 
 /*N*/ }
 
-/*N*/ bool XColorItem::QueryValue( ::com::sun::star::uno::Any& rVal, BYTE nMemberId ) const
+/*N*/ bool XColorItem::QueryValue( ::com::sun::star::uno::Any& rVal, BYTE /*nMemberId*/ ) const
 /*N*/ {
 /*N*/ 	rVal <<= (sal_Int32)GetValue().GetRGBColor();
 /*N*/ 	return true;
 /*N*/ }
 
-/*N*/ bool XColorItem::PutValue( const ::com::sun::star::uno::Any& rVal, BYTE nMemberId )
+/*N*/ bool XColorItem::PutValue( const ::com::sun::star::uno::Any& rVal, BYTE /*nMemberId*/ )
 /*N*/ {
 /*N*/ 	sal_Int32 nValue;
 /*N*/ 	rVal >>= nValue;
@@ -488,7 +488,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XLineStyleItem::Clone(SfxItemPool* pPool) const
+/*N*/ SfxPoolItem* XLineStyleItem::Clone(SfxItemPool* /*pPool*/) const
 /*N*/ {
 /*N*/ 	return new XLineStyleItem( *this );
 /*N*/ }
@@ -503,7 +503,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XLineStyleItem::Create(SvStream& rIn, USHORT nVer) const
+/*N*/ SfxPoolItem* XLineStyleItem::Create(SvStream& rIn, USHORT /*nVer*/) const
 /*N*/ {
 /*N*/ 	return new XLineStyleItem(rIn);
 /*N*/ }
@@ -511,14 +511,14 @@ XubString aNameOrIndexEmptyString;
 //------------------------------------------------------------------------
 
 
-/*N*/ bool XLineStyleItem::QueryValue( ::com::sun::star::uno::Any& rVal, BYTE nMemberId ) const
+/*N*/ bool XLineStyleItem::QueryValue( ::com::sun::star::uno::Any& rVal, BYTE /*nMemberId*/ ) const
 /*N*/ {
 /*N*/ 	::com::sun::star::drawing::LineStyle eLS = (::com::sun::star::drawing::LineStyle)GetValue();
 /*N*/ 	rVal <<= eLS;
 /*N*/ 	return true;
 /*N*/ }
 
-/*N*/ bool XLineStyleItem::PutValue( const ::com::sun::star::uno::Any& rVal, BYTE nMemberId )
+/*N*/ bool XLineStyleItem::PutValue( const ::com::sun::star::uno::Any& rVal, BYTE /*nMemberId*/ )
 /*N*/ {
 /*N*/ 	::com::sun::star::drawing::LineStyle eLS;
 /*N*/ 	if(!(rVal >>= eLS ))
@@ -654,7 +654,7 @@ XubString aNameOrIndexEmptyString;
 
 //*************************************************************************
 
-/*N*/ XLineDashItem::XLineDashItem(SfxItemPool* pPool, const XDash& rTheDash)
+/*N*/ XLineDashItem::XLineDashItem(SfxItemPool* /*pPool*/, const XDash& rTheDash)
 /*N*/ : 	NameOrIndex( XATTR_LINEDASH, -1 ),
 /*N*/ 	aDash(rTheDash)
 /*N*/ {
@@ -670,7 +670,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XLineDashItem::Clone(SfxItemPool* pPool) const
+/*N*/ SfxPoolItem* XLineDashItem::Clone(SfxItemPool* /*pPool*/) const
 /*N*/ {
 /*N*/ 	return new XLineDashItem(*this);
 /*N*/ }
@@ -701,7 +701,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XLineDashItem::Create(SvStream& rIn, USHORT nVer) const
+/*N*/ SfxPoolItem* XLineDashItem::Create(SvStream& rIn, USHORT /*nVer*/) const
 /*N*/ {
 /*N*/ 	return new XLineDashItem(rIn);
 /*N*/ }
@@ -836,7 +836,7 @@ XubString aNameOrIndexEmptyString;
 
 /*N*/ bool XLineDashItem::PutValue( const ::com::sun::star::uno::Any& rVal, BYTE nMemberId )
 /*N*/ {
-/*N*/     sal_Bool bConvert = 0!=(nMemberId&CONVERT_TWIPS);
+/*N*/
 /*N*/     nMemberId &= ~CONVERT_TWIPS;
 /*N*/
 /*N*/ 	switch ( nMemberId )
@@ -1008,7 +1008,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XLineWidthItem::Clone(SfxItemPool* pPool) const
+/*N*/ SfxPoolItem* XLineWidthItem::Clone(SfxItemPool* /*pPool*/) const
 /*N*/ {
 /*N*/ 	return new XLineWidthItem(*this);
 /*N*/ }
@@ -1023,7 +1023,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XLineWidthItem::Create(SvStream& rIn, USHORT nVer) const
+/*N*/ SfxPoolItem* XLineWidthItem::Create(SvStream& rIn, USHORT /*nVer*/) const
 /*N*/ {
 /*N*/ 	return new XLineWidthItem(rIn);
 /*N*/ }
@@ -1031,13 +1031,13 @@ XubString aNameOrIndexEmptyString;
 //------------------------------------------------------------------------
 
 
-/*N*/ bool XLineWidthItem::QueryValue( ::com::sun::star::uno::Any& rVal, BYTE nMemberId ) const
+/*N*/ bool XLineWidthItem::QueryValue( ::com::sun::star::uno::Any& rVal, BYTE /*nMemberId*/ ) const
 /*N*/ {
 /*N*/ 	rVal <<= (sal_Int32)GetValue();
 /*N*/ 	return true;
 /*N*/ }
 
-/*N*/ bool XLineWidthItem::PutValue( const ::com::sun::star::uno::Any& rVal, BYTE nMemberId )
+/*N*/ bool XLineWidthItem::PutValue( const ::com::sun::star::uno::Any& rVal, BYTE /*nMemberId*/ )
 /*N*/ {
 /*N*/ 	sal_Int32 nValue;
 /*N*/ 	rVal >>= nValue;
@@ -1091,7 +1091,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XLineColorItem::Clone(SfxItemPool* pPool) const
+/*N*/ SfxPoolItem* XLineColorItem::Clone(SfxItemPool* /*pPool*/) const
 /*N*/ {
 /*N*/ 	return new XLineColorItem(*this);
 /*N*/ }
@@ -1106,7 +1106,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XLineColorItem::Create(SvStream& rIn, USHORT nVer) const
+/*N*/ SfxPoolItem* XLineColorItem::Create(SvStream& rIn, USHORT /*nVer*/) const
 /*N*/ {
 /*N*/ 	return new XLineColorItem(rIn);
 /*N*/ }
@@ -1114,13 +1114,13 @@ XubString aNameOrIndexEmptyString;
 //------------------------------------------------------------------------
 
 
-/*N*/ bool XLineColorItem::QueryValue( ::com::sun::star::uno::Any& rVal, BYTE nMemberId ) const
+/*N*/ bool XLineColorItem::QueryValue( ::com::sun::star::uno::Any& rVal, BYTE /*nMemberId*/ ) const
 /*N*/ {
 /*N*/ 	rVal <<= (sal_Int32)GetValue().GetRGBColor();
 /*N*/ 	return true;
 /*N*/ }
 
-/*N*/ bool XLineColorItem::PutValue( const ::com::sun::star::uno::Any& rVal, BYTE nMemberId )
+/*N*/ bool XLineColorItem::PutValue( const ::com::sun::star::uno::Any& rVal, BYTE /*nMemberId*/ )
 /*N*/ {
 /*N*/ 	sal_Int32 nValue;
 /*N*/ 	if(!(rVal >>= nValue))
@@ -1214,7 +1214,7 @@ XubString aNameOrIndexEmptyString;
 
 //*************************************************************************
 
-/*N*/ XLineStartItem::XLineStartItem(SfxItemPool* pPool, const XPolygon& rXPolygon)
+/*N*/ XLineStartItem::XLineStartItem(SfxItemPool* /*pPool*/, const XPolygon& rXPolygon)
 /*N*/ : 	NameOrIndex( XATTR_LINESTART, -1 ),
 /*N*/ 	aXPolygon(rXPolygon)
 /*N*/ {
@@ -1230,7 +1230,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XLineStartItem::Clone(SfxItemPool* pPool) const
+/*N*/ SfxPoolItem* XLineStartItem::Clone(SfxItemPool* /*pPool*/) const
 /*N*/ {
 /*N*/ 	return new XLineStartItem(*this);
 /*N*/ }
@@ -1261,7 +1261,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XLineStartItem::Create(SvStream& rIn, USHORT nVer) const
+/*N*/ SfxPoolItem* XLineStartItem::Create(SvStream& rIn, USHORT /*nVer*/) const
 /*N*/ {
 /*N*/ 	return new XLineStartItem(rIn);
 /*N*/ }
@@ -1319,7 +1319,7 @@ XubString aNameOrIndexEmptyString;
 
 /*N*/ bool XLineStartItem::QueryValue( ::com::sun::star::uno::Any& rVal, BYTE nMemberId ) const
 /*N*/ {
-/*N*/     sal_Bool bConvert = 0!=(nMemberId&CONVERT_TWIPS);
+/*N*/
 /*N*/     nMemberId &= ~CONVERT_TWIPS;
 /*N*/ 	if( nMemberId == MID_NAME )
 /*N*/ 	{
@@ -1339,7 +1339,7 @@ XubString aNameOrIndexEmptyString;
 
 /*N*/ bool XLineStartItem::PutValue( const ::com::sun::star::uno::Any& rVal, BYTE nMemberId )
 /*N*/ {
-/*N*/     sal_Bool bConvert = 0!=(nMemberId&CONVERT_TWIPS);
+/*N*/
 /*N*/     nMemberId &= ~CONVERT_TWIPS;
 /*N*/ 	if( nMemberId == MID_NAME )
 /*N*/ 	{
@@ -1510,7 +1510,7 @@ XubString aNameOrIndexEmptyString;
 /*N*/ 			if( pPool1 )
 /*N*/ 			{
 /*N*/ 				nCount = pPool1->GetItemCount( XATTR_LINESTART );
-/*N*/ 				for( sal_uInt16 nSurrogate = 0; nSurrogate < nCount; nSurrogate++ )
+/*N*/ 				for( nSurrogate = 0; nSurrogate < nCount; nSurrogate++ )
 /*N*/ 				{
 /*N*/ 					const XLineStartItem* pItem = (const XLineStartItem*)pPool1->GetItem( XATTR_LINESTART, nSurrogate );
 /*N*/ 
@@ -1665,7 +1665,7 @@ XubString aNameOrIndexEmptyString;
 
 //*************************************************************************
 
-/*N*/ XLineEndItem::XLineEndItem(SfxItemPool* pPool, const XPolygon& rXPolygon)
+/*N*/ XLineEndItem::XLineEndItem(SfxItemPool* /*pPool*/, const XPolygon& rXPolygon)
 /*N*/ : 	NameOrIndex( XATTR_LINEEND, -1 ),
 /*N*/ 	aXPolygon(rXPolygon)
 /*N*/ {
@@ -1681,7 +1681,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XLineEndItem::Clone(SfxItemPool* pPool) const
+/*N*/ SfxPoolItem* XLineEndItem::Clone(SfxItemPool* /*pPool*/) const
 /*N*/ {
 /*N*/ 	return new XLineEndItem(*this);
 /*N*/ }
@@ -1712,7 +1712,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XLineEndItem::Create(SvStream& rIn, USHORT nVer) const
+/*N*/ SfxPoolItem* XLineEndItem::Create(SvStream& rIn, USHORT /*nVer*/) const
 /*N*/ {
 /*N*/ 	return new XLineEndItem(rIn);
 /*N*/ }
@@ -1912,7 +1912,7 @@ XubString aNameOrIndexEmptyString;
 /*N*/ 			if( pPool1 )
 /*N*/ 			{
 /*N*/ 				nCount = pPool1->GetItemCount( XATTR_LINESTART );
-/*N*/ 				for( sal_uInt16 nSurrogate = 0; nSurrogate < nCount; nSurrogate++ )
+/*N*/ 				for( nSurrogate = 0; nSurrogate < nCount; nSurrogate++ )
 /*N*/ 				{
 /*N*/ 					const XLineStartItem* pItem = (const XLineStartItem*)pPool1->GetItem( XATTR_LINESTART, nSurrogate );
 /*N*/ 
@@ -1991,7 +1991,7 @@ XubString aNameOrIndexEmptyString;
 /*N*/ bool XLineEndItem::QueryValue( ::com::sun::star::uno::Any& rVal, BYTE nMemberId ) const
 /*N*/ {
 /*N*/ #ifndef SVX_LIGHT
-/*N*/     sal_Bool bConvert = 0!=(nMemberId&CONVERT_TWIPS);
+/*N*/
 /*N*/     nMemberId &= ~CONVERT_TWIPS;
 /*N*/ 	if( nMemberId == MID_NAME )
 /*N*/ 	{
@@ -2011,7 +2011,7 @@ XubString aNameOrIndexEmptyString;
 
 /*N*/ bool XLineEndItem::PutValue( const ::com::sun::star::uno::Any& rVal, BYTE nMemberId )
 /*N*/ {
-/*N*/     sal_Bool bConvert = 0!=(nMemberId&CONVERT_TWIPS);
+/*N*/
 /*N*/     nMemberId &= ~CONVERT_TWIPS;
 /*N*/ 	if( nMemberId == MID_NAME )
 /*N*/ 	{
@@ -2080,7 +2080,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XLineStartWidthItem::Clone(SfxItemPool* pPool) const
+/*N*/ SfxPoolItem* XLineStartWidthItem::Clone(SfxItemPool* /*pPool*/) const
 /*N*/ {
 /*N*/ 	return new XLineStartWidthItem(*this);
 /*N*/ }
@@ -2096,7 +2096,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XLineStartWidthItem::Create(SvStream& rIn, USHORT nVer) const
+/*N*/ SfxPoolItem* XLineStartWidthItem::Create(SvStream& rIn, USHORT /*nVer*/) const
 /*N*/ {
 /*N*/ 	return new XLineStartWidthItem(rIn);
 /*N*/ }
@@ -2104,13 +2104,13 @@ XubString aNameOrIndexEmptyString;
 //------------------------------------------------------------------------
 
 
-/*N*/ bool XLineStartWidthItem::QueryValue( ::com::sun::star::uno::Any& rVal, BYTE nMemberId ) const
+/*N*/ bool XLineStartWidthItem::QueryValue( ::com::sun::star::uno::Any& rVal, BYTE /*nMemberId*/ ) const
 /*N*/ {
 /*N*/ 	rVal <<= (sal_Int32)GetValue();
 /*N*/ 	return true;
 /*N*/ }
 
-/*N*/ bool XLineStartWidthItem::PutValue( const ::com::sun::star::uno::Any& rVal, BYTE nMemberId )
+/*N*/ bool XLineStartWidthItem::PutValue( const ::com::sun::star::uno::Any& rVal, BYTE /*nMemberId*/ )
 /*N*/ {
 /*N*/ 	sal_Int32 nValue;
 /*N*/ 	rVal >>= nValue;
@@ -2165,7 +2165,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XLineEndWidthItem::Clone(SfxItemPool* pPool) const
+/*N*/ SfxPoolItem* XLineEndWidthItem::Clone(SfxItemPool* /*pPool*/) const
 /*N*/ {
 /*N*/ 	return new XLineEndWidthItem(*this);
 /*N*/ }
@@ -2180,7 +2180,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XLineEndWidthItem::Create(SvStream& rIn, USHORT nVer) const
+/*N*/ SfxPoolItem* XLineEndWidthItem::Create(SvStream& rIn, USHORT /*nVer*/) const
 /*N*/ {
 /*N*/ 	return new XLineEndWidthItem(rIn);
 /*N*/ }
@@ -2188,13 +2188,13 @@ XubString aNameOrIndexEmptyString;
 //------------------------------------------------------------------------
 
 
-/*N*/ bool XLineEndWidthItem::QueryValue( ::com::sun::star::uno::Any& rVal, BYTE nMemberId ) const
+/*N*/ bool XLineEndWidthItem::QueryValue( ::com::sun::star::uno::Any& rVal, BYTE /*nMemberId*/ ) const
 /*N*/ {
 /*N*/ 	rVal <<= (sal_Int32)GetValue();
 /*N*/ 	return true;
 /*N*/ }
 
-/*N*/ bool XLineEndWidthItem::PutValue( const ::com::sun::star::uno::Any& rVal, BYTE nMemberId )
+/*N*/ bool XLineEndWidthItem::PutValue( const ::com::sun::star::uno::Any& rVal, BYTE /*nMemberId*/ )
 /*N*/ {
 /*N*/ 	sal_Int32 nValue;
 /*N*/ 	rVal >>= nValue;
@@ -2248,7 +2248,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XLineStartCenterItem::Clone(SfxItemPool* pPool) const
+/*N*/ SfxPoolItem* XLineStartCenterItem::Clone(SfxItemPool* /*pPool*/) const
 /*N*/ {
 /*N*/ 	return new XLineStartCenterItem(*this);
 /*N*/ }
@@ -2264,7 +2264,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XLineStartCenterItem::Create(SvStream& rIn, USHORT nVer) const
+/*N*/ SfxPoolItem* XLineStartCenterItem::Create(SvStream& rIn, USHORT /*nVer*/) const
 /*N*/ {
 /*N*/ 	return new XLineStartCenterItem(rIn);
 /*N*/ }
@@ -2272,14 +2272,14 @@ XubString aNameOrIndexEmptyString;
 //------------------------------------------------------------------------
 
 
-/*N*/ bool XLineStartCenterItem::QueryValue( ::com::sun::star::uno::Any& rVal, BYTE nMemberId ) const
+/*N*/ bool XLineStartCenterItem::QueryValue( ::com::sun::star::uno::Any& rVal, BYTE /*nMemberId*/ ) const
 /*N*/ {
 /*N*/ 	sal_Bool bValue = GetValue();
 /*N*/ 	rVal.setValue( &bValue, ::getCppuBooleanType()  );
 /*N*/ 	return true;
 /*N*/ }
 
-/*N*/ bool XLineStartCenterItem::PutValue( const ::com::sun::star::uno::Any& rVal, BYTE nMemberId )
+/*N*/ bool XLineStartCenterItem::PutValue( const ::com::sun::star::uno::Any& rVal, BYTE /*nMemberId*/ )
 /*N*/ {
 /*N*/ 	if( !rVal.hasValue() || rVal.getValueType() != ::getCppuBooleanType() )
 /*N*/ 		return false;
@@ -2334,7 +2334,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XLineEndCenterItem::Clone(SfxItemPool* pPool) const
+/*N*/ SfxPoolItem* XLineEndCenterItem::Clone(SfxItemPool* /*pPool*/) const
 /*N*/ {
 /*N*/ 	return new XLineEndCenterItem(*this);
 /*N*/ }
@@ -2350,7 +2350,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XLineEndCenterItem::Create(SvStream& rIn, USHORT nVer) const
+/*N*/ SfxPoolItem* XLineEndCenterItem::Create(SvStream& rIn, USHORT /*nVer*/) const
 /*N*/ {
 /*N*/ 	return new XLineEndCenterItem(rIn);
 /*N*/ }
@@ -2358,14 +2358,14 @@ XubString aNameOrIndexEmptyString;
 //------------------------------------------------------------------------
 
 
-/*N*/ bool XLineEndCenterItem::QueryValue( ::com::sun::star::uno::Any& rVal, BYTE nMemberId ) const
+/*N*/ bool XLineEndCenterItem::QueryValue( ::com::sun::star::uno::Any& rVal, BYTE /*nMemberId*/ ) const
 /*N*/ {
 /*N*/ 	sal_Bool bValue = GetValue();
 /*N*/ 	rVal.setValue( &bValue, ::getCppuBooleanType()  );
 /*N*/ 	return true;
 /*N*/ }
 
-/*N*/ bool XLineEndCenterItem::PutValue( const ::com::sun::star::uno::Any& rVal, BYTE nMemberId )
+/*N*/ bool XLineEndCenterItem::PutValue( const ::com::sun::star::uno::Any& rVal, BYTE /*nMemberId*/ )
 /*N*/ {
 /*N*/ 	if( !rVal.hasValue() || rVal.getValueType() != ::getCppuBooleanType() )
 /*N*/ 		return false;
@@ -2424,7 +2424,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFillStyleItem::Clone(SfxItemPool* pPool) const
+/*N*/ SfxPoolItem* XFillStyleItem::Clone(SfxItemPool* /*pPool*/) const
 /*N*/ {
 /*N*/ 	return new XFillStyleItem( *this );
 /*N*/ }
@@ -2439,7 +2439,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFillStyleItem::Create(SvStream& rIn, USHORT nVer) const
+/*N*/ SfxPoolItem* XFillStyleItem::Create(SvStream& rIn, USHORT /*nVer*/) const
 /*N*/ {
 /*N*/ 	return new XFillStyleItem(rIn);
 /*N*/ }
@@ -2455,7 +2455,7 @@ XubString aNameOrIndexEmptyString;
 /*N*/ }
 
 // -----------------------------------------------------------------------
-/*N*/ bool XFillStyleItem::QueryValue( ::com::sun::star::uno::Any& rVal, BYTE nMemberId ) const
+/*N*/ bool XFillStyleItem::QueryValue( ::com::sun::star::uno::Any& rVal, BYTE /*nMemberId*/ ) const
 /*N*/ {
 /*N*/ 	::com::sun::star::drawing::FillStyle eFS = (::com::sun::star::drawing::FillStyle)GetValue();
 /*N*/
@@ -2465,7 +2465,7 @@ XubString aNameOrIndexEmptyString;
 /*N*/ }
 
 // -----------------------------------------------------------------------
-/*N*/ bool XFillStyleItem::PutValue( const ::com::sun::star::uno::Any& rVal, BYTE nMemberId )
+/*N*/ bool XFillStyleItem::PutValue( const ::com::sun::star::uno::Any& rVal, BYTE /*nMemberId*/ )
 /*N*/ {
 /*N*/     ::com::sun::star::drawing::FillStyle eFS;
 /*N*/ 	if(!(rVal >>= eFS))
@@ -2528,7 +2528,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFillColorItem::Clone(SfxItemPool* pPool) const
+/*N*/ SfxPoolItem* XFillColorItem::Clone(SfxItemPool* /*pPool*/) const
 /*N*/ {
 /*N*/ 	return new XFillColorItem(*this);
 /*N*/ }
@@ -2543,7 +2543,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFillColorItem::Create(SvStream& rIn, USHORT nVer) const
+/*N*/ SfxPoolItem* XFillColorItem::Create(SvStream& rIn, USHORT /*nVer*/) const
 /*N*/ {
 /*N*/ 	return new XFillColorItem(rIn);
 /*N*/ }
@@ -2553,7 +2553,7 @@ XubString aNameOrIndexEmptyString;
 
 // -----------------------------------------------------------------------
 
-/*N*/ bool XFillColorItem::QueryValue( ::com::sun::star::uno::Any& rVal, BYTE nMemberId ) const
+/*N*/ bool XFillColorItem::QueryValue( ::com::sun::star::uno::Any& rVal, BYTE /*nMemberId*/ ) const
 /*N*/ {
 /*N*/ 	rVal <<= (sal_Int32)GetValue().GetRGBColor();
 /*N*/
@@ -2562,7 +2562,7 @@ XubString aNameOrIndexEmptyString;
 
 // -----------------------------------------------------------------------
 
-/*N*/ bool XFillColorItem::PutValue( const ::com::sun::star::uno::Any& rVal, BYTE nMemberId )
+/*N*/ bool XFillColorItem::PutValue( const ::com::sun::star::uno::Any& rVal, BYTE /*nMemberId*/ )
 /*N*/ {
 /*N*/ 	sal_Int32 nValue;
 /*N*/ 	if(!(rVal >>= nValue ))
@@ -2743,7 +2743,7 @@ XubString aNameOrIndexEmptyString;
 
 //*************************************************************************
 
-/*N*/ XFillGradientItem::XFillGradientItem(SfxItemPool* pPool, const XGradient& rTheGradient)
+/*N*/ XFillGradientItem::XFillGradientItem(SfxItemPool* /*pPool*/, const XGradient& rTheGradient)
 /*N*/ : 	NameOrIndex( XATTR_FILLGRADIENT, -1 ),
 /*N*/ 	aGradient(rTheGradient)
 /*N*/ {
@@ -2759,7 +2759,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFillGradientItem::Clone(SfxItemPool* pPool) const
+/*N*/ SfxPoolItem* XFillGradientItem::Clone(SfxItemPool* /*pPool*/) const
 /*N*/ {
 /*N*/ 	return new XFillGradientItem(*this);
 /*N*/ }
@@ -2864,7 +2864,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ USHORT XFillGradientItem::GetVersion( USHORT nFileFormatVersion ) const
+/*N*/ USHORT XFillGradientItem::GetVersion( USHORT /*nFileFormatVersion*/ ) const
 /*N*/ {
 /*N*/ 	// !!! this version number also represents the version number of superclasses
 /*N*/ 	// !!! (e.g. XFillFloatTransparenceItem); if you make any changes here,
@@ -2885,20 +2885,20 @@ XubString aNameOrIndexEmptyString;
 /*N*/ 		case MID_FILLGRADIENT:
 /*N*/ 		{
 /*N*/ 			const XGradient& aXGradient = GetValue();
-/*N*/ 			::com::sun::star::awt::Gradient aGradient;
+/*N*/ 			::com::sun::star::awt::Gradient _aGradient;
 /*N*/
-/*N*/ 			aGradient.Style = (::com::sun::star::awt::GradientStyle) aXGradient.GetGradientStyle();
-/*N*/ 			aGradient.StartColor = (INT32)aXGradient.GetStartColor().GetColor();
-/*N*/ 			aGradient.EndColor = (INT32)aXGradient.GetEndColor().GetColor();
-/*N*/ 			aGradient.Angle = (short)aXGradient.GetAngle();
-/*N*/ 			aGradient.Border = aXGradient.GetBorder();
-/*N*/ 			aGradient.XOffset = aXGradient.GetXOffset();
-/*N*/ 			aGradient.YOffset = aXGradient.GetYOffset();
-/*N*/ 			aGradient.StartIntensity = aXGradient.GetStartIntens();
-/*N*/ 			aGradient.EndIntensity = aXGradient.GetEndIntens();
-/*N*/ 			aGradient.StepCount = aXGradient.GetSteps();
+/*N*/ 			_aGradient.Style = (::com::sun::star::awt::GradientStyle) aXGradient.GetGradientStyle();
+/*N*/ 			_aGradient.StartColor = (INT32)aXGradient.GetStartColor().GetColor();
+/*N*/ 			_aGradient.EndColor = (INT32)aXGradient.GetEndColor().GetColor();
+/*N*/ 			_aGradient.Angle = (short)aXGradient.GetAngle();
+/*N*/ 			_aGradient.Border = aXGradient.GetBorder();
+/*N*/ 			_aGradient.XOffset = aXGradient.GetXOffset();
+/*N*/ 			_aGradient.YOffset = aXGradient.GetYOffset();
+/*N*/ 			_aGradient.StartIntensity = aXGradient.GetStartIntens();
+/*N*/ 			_aGradient.EndIntensity = aXGradient.GetEndIntens();
+/*N*/ 			_aGradient.StepCount = aXGradient.GetSteps();
 /*N*/
-/*N*/ 			rVal <<= aGradient;
+/*N*/ 			rVal <<= _aGradient;
 /*N*/ 			break;
 /*N*/ 		}
 /*N*/
@@ -2946,22 +2946,22 @@ XubString aNameOrIndexEmptyString;
 /*N*/
 /*N*/ 		case MID_FILLGRADIENT:
 /*N*/ 		{
-/*N*/ 			::com::sun::star::awt::Gradient aGradient;
-/*N*/ 			if(!(rVal >>= aGradient))
+/*N*/ 			::com::sun::star::awt::Gradient _aGradient;
+/*N*/ 			if(!(rVal >>= _aGradient))
 /*N*/ 				return sal_False;
 /*N*/
 /*N*/ 			XGradient aXGradient;
 /*N*/
-/*N*/ 			aXGradient.SetGradientStyle( (XGradientStyle) aGradient.Style );
-/*N*/ 			aXGradient.SetStartColor( aGradient.StartColor );
-/*N*/ 			aXGradient.SetEndColor( aGradient.EndColor );
-/*N*/ 			aXGradient.SetAngle( aGradient.Angle );
-/*N*/ 			aXGradient.SetBorder( aGradient.Border );
-/*N*/ 			aXGradient.SetXOffset( aGradient.XOffset );
-/*N*/ 			aXGradient.SetYOffset( aGradient.YOffset );
-/*N*/ 			aXGradient.SetStartIntens( aGradient.StartIntensity );
-/*N*/ 			aXGradient.SetEndIntens( aGradient.EndIntensity );
-/*N*/ 			aXGradient.SetSteps( aGradient.StepCount );
+/*N*/ 			aXGradient.SetGradientStyle( (XGradientStyle) _aGradient.Style );
+/*N*/ 			aXGradient.SetStartColor( _aGradient.StartColor );
+/*N*/ 			aXGradient.SetEndColor( _aGradient.EndColor );
+/*N*/ 			aXGradient.SetAngle( _aGradient.Angle );
+/*N*/ 			aXGradient.SetBorder( _aGradient.Border );
+/*N*/ 			aXGradient.SetXOffset( _aGradient.XOffset );
+/*N*/ 			aXGradient.SetYOffset( _aGradient.YOffset );
+/*N*/ 			aXGradient.SetStartIntens( _aGradient.StartIntensity );
+/*N*/ 			aXGradient.SetEndIntens( _aGradient.EndIntensity );
+/*N*/ 			aXGradient.SetSteps( _aGradient.StepCount );
 /*N*/
 /*N*/ 			SetValue( aXGradient );
 /*N*/ 			break;
@@ -3097,7 +3097,7 @@ XubString aNameOrIndexEmptyString;
 
 //*************************************************************************
 
-/*N*/ XFillFloatTransparenceItem::XFillFloatTransparenceItem(SfxItemPool* pPool, const XGradient& rTheGradient, BOOL bEnable )
+/*N*/ XFillFloatTransparenceItem::XFillFloatTransparenceItem(SfxItemPool* /*pPool*/, const XGradient& rTheGradient, BOOL bEnable )
 /*N*/ : 	XFillGradientItem	( -1, rTheGradient ),
 /*N*/ 	bEnabled			( bEnable )
 /*N*/ {
@@ -3115,7 +3115,7 @@ XubString aNameOrIndexEmptyString;
 
 //------------------------------------------------------------------------
 
-/*N*/ SfxPoolItem* XFillFloatTransparenceItem::Clone( SfxItemPool* pPool ) const
+/*N*/ SfxPoolItem* XFillFloatTransparenceItem::Clone( SfxItemPool* /*pPool*/ ) const
 /*N*/ {
 /*N*/ 	return new XFillFloatTransparenceItem( *this );
 /*N*/ }
@@ -3311,7 +3311,7 @@ XubString aNameOrIndexEmptyString;
 
 //*************************************************************************
 
-/*N*/ XFillHatchItem::XFillHatchItem(SfxItemPool* pPool, const XHatch& rTheHatch)
+/*N*/ XFillHatchItem::XFillHatchItem(SfxItemPool* /*pPool*/, const XHatch& rTheHatch)
 /*N*/ : 	NameOrIndex( XATTR_FILLHATCH, -1 ),
 /*N*/ 	aHatch(rTheHatch)
 /*N*/ {
@@ -3327,7 +3327,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFillHatchItem::Clone(SfxItemPool* pPool) const
+/*N*/ SfxPoolItem* XFillHatchItem::Clone(SfxItemPool* /*pPool*/) const
 /*N*/ {
 /*N*/ 	return new XFillHatchItem(*this);
 /*N*/ }
@@ -3358,7 +3358,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFillHatchItem::Create(SvStream& rIn, USHORT nVer) const
+/*N*/ SfxPoolItem* XFillHatchItem::Create(SvStream& rIn, USHORT /*nVer*/) const
 /*N*/ {
 /*N*/ 	return new XFillHatchItem(rIn);
 /*N*/ }
@@ -3423,7 +3423,7 @@ XubString aNameOrIndexEmptyString;
 // -----------------------------------------------------------------------
 /*N*/ bool XFillHatchItem::QueryValue( ::com::sun::star::uno::Any& rVal, BYTE nMemberId ) const
 /*N*/ {
-/*N*/     sal_Bool bConvert = 0!=(nMemberId&CONVERT_TWIPS);
+/*N*/
 /*N*/     nMemberId &= ~CONVERT_TWIPS;
 /*N*/
 /*N*/ 	switch ( nMemberId )
@@ -3466,7 +3466,7 @@ XubString aNameOrIndexEmptyString;
 // -----------------------------------------------------------------------
 /*N*/ bool XFillHatchItem::PutValue( const ::com::sun::star::uno::Any& rVal, BYTE nMemberId )
 /*N*/ {
-/*N*/     sal_Bool bConvert = 0!=(nMemberId&CONVERT_TWIPS);
+/*N*/
 /*N*/     nMemberId &= ~CONVERT_TWIPS;
 /*N*/
 /*N*/ 	switch ( nMemberId )
@@ -3601,7 +3601,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFormTextStyleItem::Clone(SfxItemPool* pPool) const
+/*N*/ SfxPoolItem* XFormTextStyleItem::Clone(SfxItemPool* /*pPool*/) const
 /*N*/ {
 /*N*/ 	return new XFormTextStyleItem( *this );
 /*N*/ }
@@ -3616,7 +3616,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFormTextStyleItem::Create(SvStream& rIn, USHORT nVer) const
+/*N*/ SfxPoolItem* XFormTextStyleItem::Create(SvStream& rIn, USHORT /*nVer*/) const
 /*N*/ {
 /*N*/ 	return new XFormTextStyleItem(rIn);
 /*N*/ }
@@ -3639,7 +3639,7 @@ XubString aNameOrIndexEmptyString;
 \*************************************************************************/
 
 // #FontWork#
-/*N*/ bool XFormTextStyleItem::QueryValue( uno::Any& rVal, BYTE nMemberId ) const
+/*N*/ bool XFormTextStyleItem::QueryValue( uno::Any& rVal, BYTE /*nMemberId*/ ) const
 /*N*/ {
 /*N*/ 	rVal <<= (sal_Int32)GetValue();
 /*N*/ 	return true;
@@ -3652,7 +3652,7 @@ XubString aNameOrIndexEmptyString;
 \*************************************************************************/
 
 // #FontWork#
-/*N*/ bool XFormTextStyleItem::PutValue( const uno::Any& rVal, BYTE nMemberId )
+/*N*/ bool XFormTextStyleItem::PutValue( const uno::Any& rVal, BYTE /*nMemberId*/ )
 /*N*/ {
 /*N*/ 	sal_Int32 nValue;
 /*N*/ 	rVal >>= nValue;
@@ -3706,7 +3706,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFormTextAdjustItem::Clone(SfxItemPool* pPool) const
+/*N*/ SfxPoolItem* XFormTextAdjustItem::Clone(SfxItemPool* /*pPool*/) const
 /*N*/ {
 /*N*/ 	return new XFormTextAdjustItem( *this );
 /*N*/ }
@@ -3721,7 +3721,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFormTextAdjustItem::Create(SvStream& rIn, USHORT nVer) const
+/*N*/ SfxPoolItem* XFormTextAdjustItem::Create(SvStream& rIn, USHORT /*nVer*/) const
 /*N*/ {
 /*N*/ 	return new XFormTextAdjustItem(rIn);
 /*N*/ }
@@ -3744,7 +3744,7 @@ XubString aNameOrIndexEmptyString;
 \*************************************************************************/
 
 // #FontWork#
-/*N*/ bool XFormTextAdjustItem::QueryValue( uno::Any& rVal, BYTE nMemberId ) const
+/*N*/ bool XFormTextAdjustItem::QueryValue( uno::Any& rVal, BYTE /*nMemberId*/ ) const
 /*N*/ {
 /*N*/ 	rVal <<= (sal_Int32)GetValue();
 /*N*/ 	return true;
@@ -3757,7 +3757,7 @@ XubString aNameOrIndexEmptyString;
 \*************************************************************************/
 
 // #FontWork#
-/*N*/ bool XFormTextAdjustItem::PutValue( const uno::Any& rVal, BYTE nMemberId )
+/*N*/ bool XFormTextAdjustItem::PutValue( const uno::Any& rVal, BYTE /*nMemberId*/ )
 /*N*/ {
 /*N*/ 	sal_Int32 nValue;
 /*N*/ 	rVal >>= nValue;
@@ -3811,7 +3811,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFormTextDistanceItem::Clone(SfxItemPool* pPool) const
+/*N*/ SfxPoolItem* XFormTextDistanceItem::Clone(SfxItemPool* /*pPool*/) const
 /*N*/ {
 /*N*/ 	return new XFormTextDistanceItem(*this);
 /*N*/ }
@@ -3826,7 +3826,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFormTextDistanceItem::Create(SvStream& rIn, USHORT nVer) const
+/*N*/ SfxPoolItem* XFormTextDistanceItem::Create(SvStream& rIn, USHORT /*nVer*/) const
 /*N*/ {
 /*N*/ 	return new XFormTextDistanceItem(rIn);
 /*N*/ }
@@ -3876,7 +3876,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFormTextStartItem::Clone(SfxItemPool* pPool) const
+/*N*/ SfxPoolItem* XFormTextStartItem::Clone(SfxItemPool* /*pPool*/) const
 /*N*/ {
 /*N*/ 	return new XFormTextStartItem(*this);
 /*N*/ }
@@ -3891,7 +3891,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFormTextStartItem::Create(SvStream& rIn, USHORT nVer) const
+/*N*/ SfxPoolItem* XFormTextStartItem::Create(SvStream& rIn, USHORT /*nVer*/) const
 /*N*/ {
 /*N*/ 	return new XFormTextStartItem(rIn);
 /*N*/ }
@@ -3938,7 +3938,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFormTextMirrorItem::Clone(SfxItemPool* pPool) const
+/*N*/ SfxPoolItem* XFormTextMirrorItem::Clone(SfxItemPool* /*pPool*/) const
 /*N*/ {
 /*N*/ 	return new XFormTextMirrorItem(*this);
 /*N*/ }
@@ -3953,7 +3953,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFormTextMirrorItem::Create(SvStream& rIn, USHORT nVer) const
+/*N*/ SfxPoolItem* XFormTextMirrorItem::Create(SvStream& rIn, USHORT /*nVer*/) const
 /*N*/ {
 /*N*/ 	return new XFormTextMirrorItem(rIn);
 /*N*/ }
@@ -4001,7 +4001,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFormTextOutlineItem::Clone(SfxItemPool* pPool) const
+/*N*/ SfxPoolItem* XFormTextOutlineItem::Clone(SfxItemPool* /*pPool*/) const
 /*N*/ {
 /*N*/ 	return new XFormTextOutlineItem(*this);
 /*N*/ }
@@ -4016,7 +4016,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFormTextOutlineItem::Create(SvStream& rIn, USHORT nVer) const
+/*N*/ SfxPoolItem* XFormTextOutlineItem::Create(SvStream& rIn, USHORT /*nVer*/) const
 /*N*/ {
 /*N*/ 	return new XFormTextOutlineItem(rIn);
 /*N*/ }
@@ -4066,7 +4066,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFormTextShadowItem::Clone(SfxItemPool* pPool) const
+/*N*/ SfxPoolItem* XFormTextShadowItem::Clone(SfxItemPool* /*pPool*/) const
 /*N*/ {
 /*N*/ 	return new XFormTextShadowItem( *this );
 /*N*/ }
@@ -4081,7 +4081,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFormTextShadowItem::Create(SvStream& rIn, USHORT nVer) const
+/*N*/ SfxPoolItem* XFormTextShadowItem::Create(SvStream& rIn, USHORT /*nVer*/) const
 /*N*/ {
 /*N*/ 	return new XFormTextShadowItem(rIn);
 /*N*/ }
@@ -4105,7 +4105,7 @@ XubString aNameOrIndexEmptyString;
 \*************************************************************************/
 
 // #FontWork#
-/*N*/ bool XFormTextShadowItem::QueryValue( uno::Any& rVal, BYTE nMemberId ) const
+/*N*/ bool XFormTextShadowItem::QueryValue( uno::Any& rVal, BYTE /*nMemberId*/ ) const
 /*N*/ {
 /*N*/ 	rVal <<= (sal_Int32)GetValue();
 /*N*/ 	return true;
@@ -4118,7 +4118,7 @@ XubString aNameOrIndexEmptyString;
 \*************************************************************************/
 
 // #FontWork#
-/*N*/ bool XFormTextShadowItem::PutValue( const uno::Any& rVal, BYTE nMemberId )
+/*N*/ bool XFormTextShadowItem::PutValue( const uno::Any& rVal, BYTE /*nMemberId*/ )
 /*N*/ {
 /*N*/ 	sal_Int32 nValue;
 /*N*/ 	rVal >>= nValue;
@@ -4173,7 +4173,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFormTextShadowColorItem::Clone(SfxItemPool* pPool) const
+/*N*/ SfxPoolItem* XFormTextShadowColorItem::Clone(SfxItemPool* /*pPool*/) const
 /*N*/ {
 /*N*/ 	return new XFormTextShadowColorItem(*this);
 /*N*/ }
@@ -4188,7 +4188,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFormTextShadowColorItem::Create(SvStream& rIn, USHORT nVer) const
+/*N*/ SfxPoolItem* XFormTextShadowColorItem::Create(SvStream& rIn, USHORT /*nVer*/) const
 /*N*/ {
 /*N*/ 	return new XFormTextShadowColorItem(rIn);
 /*N*/ }
@@ -4238,7 +4238,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFormTextShadowXValItem::Clone(SfxItemPool* pPool) const
+/*N*/ SfxPoolItem* XFormTextShadowXValItem::Clone(SfxItemPool* /*pPool*/) const
 /*N*/ {
 /*N*/ 	return new XFormTextShadowXValItem(*this);
 /*N*/ }
@@ -4253,7 +4253,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFormTextShadowXValItem::Create(SvStream& rIn, USHORT nVer) const
+/*N*/ SfxPoolItem* XFormTextShadowXValItem::Create(SvStream& rIn, USHORT /*nVer*/) const
 /*N*/ {
 /*N*/ 	return new XFormTextShadowXValItem(rIn);
 /*N*/ }
@@ -4303,7 +4303,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFormTextShadowYValItem::Clone(SfxItemPool* pPool) const
+/*N*/ SfxPoolItem* XFormTextShadowYValItem::Clone(SfxItemPool* /*pPool*/) const
 /*N*/ {
 /*N*/ 	return new XFormTextShadowYValItem(*this);
 /*N*/ }
@@ -4318,7 +4318,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFormTextShadowYValItem::Create(SvStream& rIn, USHORT nVer) const
+/*N*/ SfxPoolItem* XFormTextShadowYValItem::Create(SvStream& rIn, USHORT /*nVer*/) const
 /*N*/ {
 /*N*/ 	return new XFormTextShadowYValItem(rIn);
 /*N*/ }
@@ -4368,7 +4368,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFormTextStdFormItem::Clone(SfxItemPool* pPool) const
+/*N*/ SfxPoolItem* XFormTextStdFormItem::Clone(SfxItemPool* /*pPool*/) const
 /*N*/ {
 /*N*/ 	return new XFormTextStdFormItem( *this );
 /*N*/ }
@@ -4383,7 +4383,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFormTextStdFormItem::Create(SvStream& rIn, USHORT nVer) const
+/*N*/ SfxPoolItem* XFormTextStdFormItem::Create(SvStream& rIn, USHORT /*nVer*/) const
 /*N*/ {
 /*N*/ 	return new XFormTextStdFormItem(rIn);
 /*N*/ }
@@ -4407,7 +4407,7 @@ XubString aNameOrIndexEmptyString;
 \*************************************************************************/
 
 // #FontWork#
-/*N*/ bool XFormTextStdFormItem::QueryValue( uno::Any& rVal, BYTE nMemberId ) const
+/*N*/ bool XFormTextStdFormItem::QueryValue( uno::Any& rVal, BYTE /*nMemberId*/ ) const
 /*N*/ {
 /*N*/ 	rVal <<= (sal_Int32)GetValue();
 /*N*/ 	return true;
@@ -4420,7 +4420,7 @@ XubString aNameOrIndexEmptyString;
 \*************************************************************************/
 
 // #FontWork#
-/*N*/ bool XFormTextStdFormItem::PutValue( const uno::Any& rVal, BYTE nMemberId )
+/*N*/ bool XFormTextStdFormItem::PutValue( const uno::Any& rVal, BYTE /*nMemberId*/ )
 /*N*/ {
 /*N*/ 	sal_Int32 nValue;
 /*N*/ 	rVal >>= nValue;
@@ -4471,7 +4471,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFormTextHideFormItem::Clone(SfxItemPool* pPool) const
+/*N*/ SfxPoolItem* XFormTextHideFormItem::Clone(SfxItemPool* /*pPool*/) const
 /*N*/ {
 /*N*/ 	return new XFormTextHideFormItem(*this);
 /*N*/ }
@@ -4486,7 +4486,7 @@ XubString aNameOrIndexEmptyString;
 |*
 *************************************************************************/
 
-/*N*/ SfxPoolItem* XFormTextHideFormItem::Create(SvStream& rIn, USHORT nVer) const
+/*N*/ SfxPoolItem* XFormTextHideFormItem::Create(SvStream& rIn, USHORT /*nVer*/) const
 /*N*/ {
 /*N*/ 	return new XFormTextHideFormItem(rIn);
 /*N*/ }
@@ -4550,12 +4550,12 @@ XubString aNameOrIndexEmptyString;
 |*
 \************************************************************************/
 
-/*N*/ SfxPoolItem* XLineAttrSetItem::Create( SvStream& rStream, USHORT nVersion ) const
+/*N*/ SfxPoolItem* XLineAttrSetItem::Create( SvStream& rStream, USHORT /*nVersion*/ ) const
 /*N*/ {
-/*N*/ 	SfxItemSet *pSet = new SfxItemSet( *GetItemSet().GetPool(),
+/*N*/ 	SfxItemSet *_pSet = new SfxItemSet( *GetItemSet().GetPool(),
 /*N*/ 									XATTR_LINE_FIRST, XATTR_LINE_LAST);
-/*N*/ 	pSet->Load( rStream );
-/*N*/ 	return new XLineAttrSetItem( pSet );
+/*N*/ 	_pSet->Load( rStream );
+/*N*/ 	return new XLineAttrSetItem( _pSet );
 /*N*/ }
 
 /*************************************************************************
@@ -4623,12 +4623,12 @@ XubString aNameOrIndexEmptyString;
 |*
 \************************************************************************/
 
-/*N*/ SfxPoolItem* XFillAttrSetItem::Create( SvStream& rStream, USHORT nVersion ) const
+/*N*/ SfxPoolItem* XFillAttrSetItem::Create( SvStream& rStream, USHORT /*nVersion*/ ) const
 /*N*/ {
-/*N*/ 	SfxItemSet *pSet = new SfxItemSet( *GetItemSet().GetPool(),
+/*N*/ 	SfxItemSet* _pSet = new SfxItemSet( *GetItemSet().GetPool(),
 /*N*/ 									XATTR_FILL_FIRST, XATTR_FILL_LAST);
-/*N*/ 	pSet->Load( rStream );
-/*N*/ 	return new XFillAttrSetItem( pSet );
+/*N*/ 	_pSet->Load( rStream );
+/*N*/ 	return new XFillAttrSetItem( _pSet );
 /*N*/ }
 
 /*************************************************************************
@@ -4696,12 +4696,12 @@ XubString aNameOrIndexEmptyString;
 |*
 \************************************************************************/
 
-/*N*/ SfxPoolItem* XTextAttrSetItem::Create( SvStream& rStream, USHORT nVersion ) const
+/*N*/ SfxPoolItem* XTextAttrSetItem::Create( SvStream& rStream, USHORT /*nVersion*/ ) const
 /*N*/ {
-/*N*/ 	SfxItemSet *pSet = new SfxItemSet( *GetItemSet().GetPool(),
+/*N*/ 	SfxItemSet* _pSet = new SfxItemSet( *GetItemSet().GetPool(),
 /*N*/ 									XATTR_TEXT_FIRST, XATTR_TEXT_LAST);
-/*N*/ 	pSet->Load( rStream );
-/*N*/ 	return new XTextAttrSetItem( pSet );
+/*N*/ 	_pSet->Load( rStream );
+/*N*/ 	return new XTextAttrSetItem( _pSet );
 /*N*/ }
 
 /*************************************************************************
diff --git a/binfilter/bf_sw/source/core/fields/sw_expfld.cxx b/binfilter/bf_sw/source/core/fields/sw_expfld.cxx
index 53a12d4..7e13453 100644
--- a/binfilter/bf_sw/source/core/fields/sw_expfld.cxx
+++ b/binfilter/bf_sw/source/core/fields/sw_expfld.cxx
@@ -287,8 +287,8 @@ using namespace ::rtl;
     Beschreibung: SwSetExpFieldType by JP
  --------------------------------------------------------------------*/
 
-/*N*/ SwGetExpFieldType::SwGetExpFieldType(SwDoc* pDoc)
-/*N*/ 	: SwValueFieldType( pDoc, RES_GETEXPFLD )
+/*N*/ SwGetExpFieldType::SwGetExpFieldType(SwDoc* _pDoc)
+/*N*/ 	: SwValueFieldType( _pDoc, RES_GETEXPFLD )
 /*N*/ {
 /*N*/ }
 
diff --git a/binfilter/bf_sw/source/core/inc/frame.hxx b/binfilter/bf_sw/source/core/inc/frame.hxx
index 69269f4..9f11911 100644
--- a/binfilter/bf_sw/source/core/inc/frame.hxx
+++ b/binfilter/bf_sw/source/core/inc/frame.hxx
@@ -528,7 +528,7 @@ public:
     BOOL IsFtnAllowed() const;
 
     virtual	void  Modify( SfxPoolItem*, SfxPoolItem* );
-    virtual void  Format( const SwBorderAttrs *pAttrs = 0 ){DBG_BF_ASSERT(0, "STRIP");} //STRIP001 virtual void  Format( const SwBorderAttrs *pAttrs = 0 );
+    virtual void  Format( const SwBorderAttrs* pAttrs = 0 ){DBG_BF_ASSERT(0, "STRIP"); (void)pAttrs;}
 
     virtual void  CheckDirection( BOOL bVert );
 
diff --git a/binfilter/bf_sw/source/core/text/itrtxt.hxx b/binfilter/bf_sw/source/core/text/itrtxt.hxx
index 8d8847d..53eb79c 100644
--- a/binfilter/bf_sw/source/core/text/itrtxt.hxx
+++ b/binfilter/bf_sw/source/core/text/itrtxt.hxx
@@ -76,8 +76,8 @@ protected:
     inline SwTxtIter() { }
 
 public:
-    inline SwTxtIter( SwTxtFrm *pFrm, SwTxtInfo *pInf )
-           { CtorInit( pFrm, pInf ); }
+    inline SwTxtIter( SwTxtFrm* _pFrm, SwTxtInfo* _pInf )
+           { CtorInit( _pFrm, _pInf ); }
     inline const SwLineLayout *GetCurr() const { return pCurr; } // niemals 0!
     inline const SwLineLayout *GetNext() const { return pCurr->GetNext(); }
            const SwLineLayout *GetPrev();
@@ -166,8 +166,8 @@ protected:
     void CtorInit( SwTxtFrm *pFrm, SwTxtSizeInfo *pInf );
     inline SwTxtMargin() { }
 public:
-    inline SwTxtMargin( SwTxtFrm *pFrm, SwTxtSizeInfo *pInf )
-           { CtorInit( pFrm, pInf ); }
+    inline SwTxtMargin( SwTxtFrm* _pFrm, SwTxtSizeInfo* _pInf )
+           { CtorInit( _pFrm, _pInf ); }
     inline SwTwips GetLeftMargin() const;
     inline SwTwips Left() const;
     inline SwTwips Right() const { return nRight; }
@@ -234,8 +234,8 @@ protected:
     void CalcNewBlock( SwLineLayout *pCurr, const SwLinePortion *pStopAt,
         SwTwips nReal = 0 );
 public:
-    inline SwTxtAdjuster( SwTxtFrm *pFrm, SwTxtSizeInfo *pInf )
-           { SwTxtMargin::CtorInit( pFrm, pInf ); }
+    inline SwTxtAdjuster( SwTxtFrm* _pFrm, SwTxtSizeInfo* _pInf )
+           { SwTxtMargin::CtorInit( _pFrm, _pInf ); }
 
     // wird von SwTxtFormatter wegen UpdatePos ueberladen
     void CalcAdjLine( SwLineLayout *pCurr );
@@ -267,12 +267,12 @@ protected:
     void CtorInit( SwTxtFrm *pFrm, SwTxtSizeInfo *pInf );
     inline SwTxtCursor() { }
 public:
-    inline SwTxtCursor( SwTxtFrm *pFrm, SwTxtSizeInfo *pInf )
-           { CtorInit( pFrm, pInf ); }
+    inline SwTxtCursor( SwTxtFrm* _pFrm, SwTxtSizeInfo* _pInf )
+           { CtorInit( _pFrm, _pInf ); }
     sal_Bool GetCharRect(SwRect *, const xub_StrLen, SwCrsrMoveState* = 0,
         const long nMax = 0 );
-    sal_Bool GetEndCharRect(SwRect *, const xub_StrLen, SwCrsrMoveState* = 0,//STRIP001 	sal_Bool GetEndCharRect(SwRect *, const xub_StrLen, SwCrsrMoveState* = 0,
-    const long nMax = 0 ){DBG_BF_ASSERT(0, "STRIP"); return FALSE;} ;//STRIP001 		const long nMax = 0 );
+    sal_Bool GetEndCharRect(SwRect *, const xub_StrLen, SwCrsrMoveState* = 0,
+                            const long /*nMax*/ = 0 ){DBG_BF_ASSERT(0, "STRIP"); return FALSE;} ;
     xub_StrLen GetCrsrOfst( SwPosition *pPos, const Point &rPoint,
                 const MSHORT nChgNode, const SwCrsrMoveState* = 0 ) const;
     // 1170: beruecksichtigt Mehrdeutigkeiten; Implementierung s.u.
diff --git a/binfilter/bf_sw/source/core/text/porexp.hxx b/binfilter/bf_sw/source/core/text/porexp.hxx
index 9db325a..584aff0 100644
--- a/binfilter/bf_sw/source/core/text/porexp.hxx
+++ b/binfilter/bf_sw/source/core/text/porexp.hxx
@@ -83,7 +83,7 @@ public:
 class SwPostItsPortion : public SwExpandPortion
 {
 public:
-    SwPostItsPortion( sal_Bool bScrpt ){DBG_BF_ASSERT(0, "STRIP");}; //STRIP001 //STRIP001 			SwPostItsPortion( sal_Bool bScrpt );
+    SwPostItsPortion( sal_Bool /*bScrpt*/ ){DBG_BF_ASSERT(0, "STRIP");};
     OUTPUT_OPERATOR
 };
 
diff --git a/binfilter/bf_sw/source/core/text/porfld.hxx b/binfilter/bf_sw/source/core/text/porfld.hxx
index b912a8f..6ecb5a2 100644
--- a/binfilter/bf_sw/source/core/text/porfld.hxx
+++ b/binfilter/bf_sw/source/core/text/porfld.hxx
@@ -116,8 +116,8 @@ public:
 class SwHiddenPortion : public SwFldPortion
 {
 public:
-    inline SwHiddenPortion( const XubString &rExpand, SwFont *pFnt = 0 )
-         : SwFldPortion( rExpand, pFnt )
+    inline SwHiddenPortion( const XubString &rExpand, SwFont* _pFnt = 0 )
+         : SwFldPortion( rExpand, _pFnt )
         { SetLen(1); SetWhichPor( POR_HIDDEN ); }
     virtual sal_Bool GetExpTxt( const SwTxtSizeInfo &rInf, XubString &rTxt ) const;
 
@@ -163,11 +163,11 @@ public:
 class SwGrfNumPortion : public SwNumberPortion
 {
 public:
-SwGrfNumPortion( SwFrm *pFrm, const SvxBrushItem* pGrfBrush,//STRIP001 	SwGrfNumPortion( SwFrm *pFrm, const SvxBrushItem* pGrfBrush,
-const SwFmtVertOrient* pGrfOrient, const Size& rGrfSize,//STRIP001 		const SwFmtVertOrient* pGrfOrient, const Size& rGrfSize,
-const sal_Bool bLeft, const sal_Bool bCenter, const KSHORT nMinDst ):SwNumberPortion( aEmptyStr, NULL, bLeft, bCenter, nMinDst ){DBG_BF_ASSERT(0, "STRIP");} ;//STRIP001 		const sal_Bool bLeft, const sal_Bool bCenter, const KSHORT nMinDst );
-void SetBase( long nLnAscent, long nLnDescent,//STRIP001 	void SetBase( long nLnAscent, long nLnDescent,
-long nFlyAscent, long nFlyDescent ){DBG_BF_ASSERT(0, "STRIP");} ;//STRIP001 		long nFlyAscent, long nFlyDescent );
+    SwGrfNumPortion( SwFrm* /*pFrm*/, const SvxBrushItem* /*pGrfBrush*/,
+                     const SwFmtVertOrient* /*pGrfOrient*/, const Size& /*rGrfSize*/,
+                     const sal_Bool bLeft, const sal_Bool bCenter, const KSHORT nMinDst ):SwNumberPortion( aEmptyStr, NULL, bLeft, bCenter, nMinDst ){DBG_BF_ASSERT(0, "STRIP");} ;
+void SetBase( long /*nLnAscent*/, long /*nLnDescent*/,
+              long /*nFlyAscent*/, long /*nFlyDescent*/ ){DBG_BF_ASSERT(0, "STRIP");} ;
     OUTPUT_OPERATOR
 };
 
diff --git a/binfilter/bf_sw/source/core/text/porfly.hxx b/binfilter/bf_sw/source/core/text/porfly.hxx
index af4900d..ebc1a6a 100644
--- a/binfilter/bf_sw/source/core/text/porfly.hxx
+++ b/binfilter/bf_sw/source/core/text/porfly.hxx
@@ -49,7 +49,7 @@ public:
         : SwFixPortion(rFlyRect), nBlankWidth( 0 ) { SetWhichPor( POR_FLY ); }
     inline KSHORT GetBlankWidth( ) const { return nBlankWidth; }
     inline void SetBlankWidth( const KSHORT nNew ) { nBlankWidth = nNew; }
-    virtual void Paint( const SwTxtPaintInfo &rInf ) const{DBG_BF_ASSERT(0, "STRIP");} //STRIP001 	virtual void Paint( const SwTxtPaintInfo &rInf ) const;
+    virtual void Paint( const SwTxtPaintInfo& /*rInf*/ ) const{DBG_BF_ASSERT(0, "STRIP");}
     virtual sal_Bool Format( SwTxtFormatInfo &rInf );
     OUTPUT_OPERATOR
 };
@@ -100,7 +100,7 @@ public:
                   long nFlyDescent, sal_uInt8 nFlags );
     const SwFrmFmt *GetFrmFmt() const;
     virtual sal_Bool Format( SwTxtFormatInfo &rInf );
-    virtual void Paint( const SwTxtPaintInfo &rInf ) const{DBG_BF_ASSERT(0, "STRIP");} ;//STRIP001 	virtual void Paint( const SwTxtPaintInfo &rInf ) const;
+    virtual void Paint( const SwTxtPaintInfo& /*rInf*/ ) const{DBG_BF_ASSERT(0, "STRIP");} ;
     OUTPUT_OPERATOR
 };
 
diff --git a/binfilter/bf_sw/source/core/text/portxt.hxx b/binfilter/bf_sw/source/core/text/portxt.hxx
index ea28ec5..2b9a954 100644
--- a/binfilter/bf_sw/source/core/text/portxt.hxx
+++ b/binfilter/bf_sw/source/core/text/portxt.hxx
@@ -53,7 +53,7 @@ class SwTxtPortion : public SwLinePortion
 public:
     inline SwTxtPortion(){ SetWhichPor( POR_TXT ); }
     SwTxtPortion( const SwLinePortion &rPortion );
-    virtual void Paint( const SwTxtPaintInfo &rInf ) const{DBG_BF_ASSERT(0, "STRIP");}; //STRIP001 	virtual void Paint( const SwTxtPaintInfo &rInf ) const;
+    virtual void Paint( const SwTxtPaintInfo& /*rInf*/ ) const{DBG_BF_ASSERT(0, "STRIP");};
     virtual sal_Bool Format( SwTxtFormatInfo &rInf );
     virtual void FormatEOL( SwTxtFormatInfo &rInf );
     virtual SwPosSize GetTxtSize( const SwTxtSizeInfo &rInfo ) const;
@@ -82,7 +82,7 @@ public:
     inline KSHORT GetBlankWidth( ) const { return nBlankWidth; }
     inline void SetBlankWidth( const KSHORT nNew ) { nBlankWidth = nNew; }
     virtual SwLinePortion *Compress();
-    virtual void Paint( const SwTxtPaintInfo &rInf ) const{DBG_BF_ASSERT(0, "STRIP");} ;//STRIP001 	virtual void Paint( const SwTxtPaintInfo &rInf ) const;
+    virtual void Paint( const SwTxtPaintInfo& /*rInf*/ ) const{DBG_BF_ASSERT(0, "STRIP");} ;
 
     // Accessibility: pass information about this portion to the PortionHandler
 
diff --git a/binfilter/bf_sw/source/core/text/possiz.hxx b/binfilter/bf_sw/source/core/text/possiz.hxx
index 2b03fea..47527cd 100644
--- a/binfilter/bf_sw/source/core/text/possiz.hxx
+++ b/binfilter/bf_sw/source/core/text/possiz.hxx
@@ -39,8 +39,8 @@ class SwPosSize
     KSHORT nWidth;
     KSHORT nHeight;
 public:
-    inline SwPosSize( const KSHORT nWidth = 0, const KSHORT nHeight = 0 )
-        : nWidth(nWidth), nHeight(nHeight) { }
+    inline SwPosSize( const KSHORT _nWidth = 0, const KSHORT _nHeight = 0 )
+        : nWidth(_nWidth), nHeight(_nHeight) { }
     inline SwPosSize( const Size &rSize )
         : nWidth(KSHORT(rSize.Width())), nHeight(KSHORT(rSize.Height())){ }
     inline KSHORT Height() const { return nHeight; }
diff --git a/binfilter/binfilterdetect/source/bindetect.cxx b/binfilter/binfilterdetect/source/bindetect.cxx
index 5887772..800da34 100644
--- a/binfilter/binfilterdetect/source/bindetect.cxx
+++ b/binfilter/binfilterdetect/source/bindetect.cxx
@@ -75,149 +75,149 @@ static const sal_uInt8 nFileTypeCount = 29 + nStreamFileTypeCount;
 static const sal_uInt8 nW4WStartOffset = 5;
 static const TypesInfo aFileTypeList[ nFileTypeCount ] =
 {
-    RTL_CONSTASCII_STRINGPARAM("writer_StarWriter_10"),
-    RTL_CONSTASCII_STRINGPARAM("writer_StarWriter_20"),
-    RTL_CONSTASCII_STRINGPARAM("writer_StarWriter_DOS"),
-    RTL_CONSTASCII_STRINGPARAM("writer_Lotus_1_2_3_10_DOS_StarWriter"),
-    RTL_CONSTASCII_STRINGPARAM("writer_Lotus_1_2_3_10_WIN_StarWriter"),
-    RTL_CONSTASCII_STRINGPARAM("writer_Ami_Pro_1x_31_W4W"),                 // 5 , 33
-    RTL_CONSTASCII_STRINGPARAM("writer_CTOS_DEF_W4W"),                      // 6 , 36
-    RTL_CONSTASCII_STRINGPARAM("writer_Claris_Works_W4W"),                  // 7 , 57
-    RTL_CONSTASCII_STRINGPARAM("writer_DCA_Revisable_Form_Text_W4W"),       // 8 , 15
-    RTL_CONSTASCII_STRINGPARAM("writer_DCA_with_Display_Write_5_W4W"),      // 9 , 15
-    RTL_CONSTASCII_STRINGPARAM("writer_DCAFFT_Final_Form_Text_W4W"),        //10, 32
-    RTL_CONSTASCII_STRINGPARAM("writer_DEC_DX_W4W"),                        //11, 30
-    RTL_CONSTASCII_STRINGPARAM("writer_DEC_WPS_PLUS_W4W"),                  //12, 45
-    RTL_CONSTASCII_STRINGPARAM("writer_DataGeneral_CEO_Write_W4W"),         //13, 104
-    RTL_CONSTASCII_STRINGPARAM("writer_DisplayWrite_20_4x_W4W"),            //14, 15
-    RTL_CONSTASCII_STRINGPARAM("writer_DisplayWrite_5x_W4W"),               //15, 15
-    RTL_CONSTASCII_STRINGPARAM("writer_EBCDIC_W4W"),                        //16, 02
-    RTL_CONSTASCII_STRINGPARAM("writer_Enable_W4W"),                        //17, 28
-    RTL_CONSTASCII_STRINGPARAM("writer_Frame_Maker_MIF_30_W4W"),            //18, 42
-    RTL_CONSTASCII_STRINGPARAM("writer_Frame_Maker_MIF_40_W4W"),            //19, 42
-    RTL_CONSTASCII_STRINGPARAM("writer_Frame_Maker_MIF_50_W4W"),            //20, 42
-    RTL_CONSTASCII_STRINGPARAM("writer_Frame_Work_III_W4W"),                //21, 29
-    RTL_CONSTASCII_STRINGPARAM("writer_Frame_Work_IV_W4W"),                 //22, 29
-    RTL_CONSTASCII_STRINGPARAM("writer_HP_AdvanceWrite_Plus_W4W"),          //23, 22
-    RTL_CONSTASCII_STRINGPARAM("writer_ICL_Office_Power_6_W4W"),            //24, 102
-    RTL_CONSTASCII_STRINGPARAM("writer_ICL_Office_Power_7_W4W"),            //25, 102
-    RTL_CONSTASCII_STRINGPARAM("writer_Interleaf_W4W"),                     //26, 35
-    RTL_CONSTASCII_STRINGPARAM("writer_Interleaf_5_6_W4W"),                 //27, 46
-    RTL_CONSTASCII_STRINGPARAM("writer_Legacy_Winstar_onGO_W4W"),           //28, 37
-    RTL_CONSTASCII_STRINGPARAM("writer_Lotus_Manuscript_W4W"),              //29, 24
-    RTL_CONSTASCII_STRINGPARAM("writer_MASS_11_Rel_80_83_W4W"),             //30, 31
-    RTL_CONSTASCII_STRINGPARAM("writer_MASS_11_Rel_85_90_W4W"),             //31, 31
-    RTL_CONSTASCII_STRINGPARAM("writer_MS_MacWord_30_W4W"),                 //32, 54
-    RTL_CONSTASCII_STRINGPARAM("writer_MS_MacWord_40_W4W"),                 //33, 54
-    RTL_CONSTASCII_STRINGPARAM("writer_MS_MacWord_5x_W4W"),                 //34, 54
-    RTL_CONSTASCII_STRINGPARAM("writer_MS_WinWord_1x_W4W"),                 //35, 44
-    RTL_CONSTASCII_STRINGPARAM("writer_MS_WinWord_2x_W4W"),                 //36, 44
-    RTL_CONSTASCII_STRINGPARAM("writer_MS_Word_3x_W4W"),                    //37, 05
-    RTL_CONSTASCII_STRINGPARAM("writer_MS_Word_4x_W4W"),                    //38, 05
-    RTL_CONSTASCII_STRINGPARAM("writer_MS_Word_5x_W4W"),                    //39, 05
-    RTL_CONSTASCII_STRINGPARAM("writer_MS_Word_6x_W4W"),                    //40, 49
-    RTL_CONSTASCII_STRINGPARAM("writer_MS_Works_20_DOS_W4W"),               //41, 39
-    RTL_CONSTASCII_STRINGPARAM("writer_MS_Works_30_Win_W4W"),               //42, 39
-    RTL_CONSTASCII_STRINGPARAM("writer_MS_Works_40_Mac_W4W"),               //43, 58
-    RTL_CONSTASCII_STRINGPARAM("writer_Mac_Write_4x_50_W4W"),               //44, 51
-    RTL_CONSTASCII_STRINGPARAM("writer_Mac_Write_II_W4W"),                  //45, 52
-    RTL_CONSTASCII_STRINGPARAM("writer_Mac_Write_Pro_W4W"),                 //46, 56
-    RTL_CONSTASCII_STRINGPARAM("writer_MultiMate_33_W4W"),                  //47, 10
-    RTL_CONSTASCII_STRINGPARAM("writer_MultiMate_4_W4W"),                   //48, 10
-    RTL_CONSTASCII_STRINGPARAM("writer_MultiMate_Adv_36_W4W"),              //49, 10
-    RTL_CONSTASCII_STRINGPARAM("writer_MultiMate_Adv_II_37_W4W"),           //50, 10
-    RTL_CONSTASCII_STRINGPARAM("writer_NAVY_DIF_W4W"),                      //51, 18
-    RTL_CONSTASCII_STRINGPARAM("writer_OfficeWriter_40_W4W"),               //52, 16
-    RTL_CONSTASCII_STRINGPARAM("writer_OfficeWriter_50_W4W"),               //53, 16
-    RTL_CONSTASCII_STRINGPARAM("writer_OfficeWriter_6x_W4W"),               //54, 16
-    RTL_CONSTASCII_STRINGPARAM("writer_PFS_First_Choice_10_W4W"),           //55, 08
-    RTL_CONSTASCII_STRINGPARAM("writer_PFS_First_Choice_20_W4W"),           //56, 08
-    RTL_CONSTASCII_STRINGPARAM("writer_PFS_First_Choice_30_W4W"),           //57, 08
-    RTL_CONSTASCII_STRINGPARAM("writer_PFS_Write_W4W"),                     //58, 08
-    RTL_CONSTASCII_STRINGPARAM("writer_Peach_Text_W4W"),                    //59, 27
-    RTL_CONSTASCII_STRINGPARAM("writer_Professional_Write_10_W4W"),         //60, 33
-    RTL_CONSTASCII_STRINGPARAM("writer_Professional_Write_2x_W4W"),         //61, 33
-    RTL_CONSTASCII_STRINGPARAM("writer_Professional_Write_Plus_W4W"),       //62, 33
-    RTL_CONSTASCII_STRINGPARAM("writer_QA_Write_10_30_W4W"),                //63, 23
-    RTL_CONSTASCII_STRINGPARAM("writer_QA_Write_40_W4W"),                   //64, 23
-    RTL_CONSTASCII_STRINGPARAM("writer_Rapid_File_10_W4W"),                 //65, 25
-    RTL_CONSTASCII_STRINGPARAM("writer_Rapid_File_12_W4W"),                 //66, 25
-    RTL_CONSTASCII_STRINGPARAM("writer_Samna_Word_IV_IV_Plus_W4W"),         //67, 22
-    RTL_CONSTASCII_STRINGPARAM("writer_Total_Word_W4W"),                    //68, 14
-    RTL_CONSTASCII_STRINGPARAM("writer_Uniplex_V7_V8_W4W"),                 //69, 101
-    RTL_CONSTASCII_STRINGPARAM("writer_Uniplex_onGO_W4W"),                  //70, 101
-    RTL_CONSTASCII_STRINGPARAM("writer_VolksWriter_3_and_4_W4W"),           //71, 14
-    RTL_CONSTASCII_STRINGPARAM("writer_VolksWriter_Deluxe_W4W"),            //72, 11
-    RTL_CONSTASCII_STRINGPARAM("writer_WITA_W4W"),                          //73, 34
-    RTL_CONSTASCII_STRINGPARAM("writer_Wang_II_SWP_W4W"),                   //74, 88
-    RTL_CONSTASCII_STRINGPARAM("writer_Wang_PC_W4W"),                       //75, 26
-    RTL_CONSTASCII_STRINGPARAM("writer_Wang_WP_Plus_W4W"),                  //76, 89
-    RTL_CONSTASCII_STRINGPARAM("writer_Win_Write_3x_W4W"),                  //77, 43
-    RTL_CONSTASCII_STRINGPARAM("writer_WiziWord_30_W4W"),                   //78, 47
-    RTL_CONSTASCII_STRINGPARAM("writer_WordPerfect_Win_51_52_W4W"),         //79, 07
-    RTL_CONSTASCII_STRINGPARAM("writer_WordPerfect_Win_60_W4W"),            //80, 48
-    RTL_CONSTASCII_STRINGPARAM("writer_WordPerfect_Win_61_W4W"),            //81, 48
-    RTL_CONSTASCII_STRINGPARAM("writer_WordPerfect_Win_70_W4W"),            //82, 07
-    RTL_CONSTASCII_STRINGPARAM("writer_WordPerfect_41_W4W"),                //83, 06
-    RTL_CONSTASCII_STRINGPARAM("writer_WordPerfect_42_W4W"),                //84, 06
-    RTL_CONSTASCII_STRINGPARAM("writer_WordPerfect_50_W4W"),                //85, 07
-    RTL_CONSTASCII_STRINGPARAM("writer_WordPerfect_51_W4W"),                //86, 07
-    RTL_CONSTASCII_STRINGPARAM("writer_WordPerfect_60_W4W"),                //87, 07
-    RTL_CONSTASCII_STRINGPARAM("writer_WordPerfect_61_W4W"),                //88, 07
-    RTL_CONSTASCII_STRINGPARAM("writer_WordPerfect_Mac_1_W4W"),             //89, 59
-    RTL_CONSTASCII_STRINGPARAM("writer_WordPerfect_Mac_2_W4W"),             //90, 60
-    RTL_CONSTASCII_STRINGPARAM("writer_WordPerfect_Mac_3_W4W"),             //91, 60
-    RTL_CONSTASCII_STRINGPARAM("writer_WordStar_Win_1x_20_W4W"),            //92, 04
-    RTL_CONSTASCII_STRINGPARAM("writer_WordStar_2000_Rel_30_W4W"),          //93, 09
-    RTL_CONSTASCII_STRINGPARAM("writer_WordStar_2000_Rel_35_W4W"),          //94, 09
-    RTL_CONSTASCII_STRINGPARAM("writer_WordStar_33x_W4W"),                  //95, 04
-    RTL_CONSTASCII_STRINGPARAM("writer_WordStar_345_W4W"),                  //96, 04
-    RTL_CONSTASCII_STRINGPARAM("writer_WordStar_40_W4W"),                   //97, 04
-    RTL_CONSTASCII_STRINGPARAM("writer_WordStar_50_W4W"),                   //98, 04
-    RTL_CONSTASCII_STRINGPARAM("writer_WordStar_55_W4W"),                   //99, 04
-    RTL_CONSTASCII_STRINGPARAM("writer_WordStar_60_W4W"),                   //100, 04
-    RTL_CONSTASCII_STRINGPARAM("writer_WordStar_70_W4W"),                   //101, 04
-    RTL_CONSTASCII_STRINGPARAM("writer_WriteNow_30_Macintosh_W4W"),         //102, 62
-    RTL_CONSTASCII_STRINGPARAM("writer_Writing_Assistant_W4W"),             //103, 13
-    RTL_CONSTASCII_STRINGPARAM("writer_XEROX_XIF_50_Illustrator_W4W"),      //104, 103
-    RTL_CONSTASCII_STRINGPARAM("writer_XEROX_XIF_50_W4W"),                  //105, 103
-    RTL_CONSTASCII_STRINGPARAM("writer_XEROX_XIF_60_Color_Bitmap_W4W"),     //106, 103
-    RTL_CONSTASCII_STRINGPARAM("writer_XEROX_XIF_60_Res_Graphic_W4W"),      //107, 103
-    RTL_CONSTASCII_STRINGPARAM("writer_XyWrite_Win_10_W4W"),                //108, 17
-    RTL_CONSTASCII_STRINGPARAM("writer_XyWrite_III_W4W"),                   //109, 17
-    RTL_CONSTASCII_STRINGPARAM("writer_XyWrite_IIIP_W4W"),                  //110, 17
-    RTL_CONSTASCII_STRINGPARAM("writer_XyWrite_IV_W4W"),                    //111, 17
-    RTL_CONSTASCII_STRINGPARAM("writer_XyWrite_Sig_Win_W4W"),               //112, 17
-    RTL_CONSTASCII_STRINGPARAM("writer_XyWrite_Signature_W4W"),             //113, 17
-    RTL_CONSTASCII_STRINGPARAM("calc_StarCalc_30"),
-    RTL_CONSTASCII_STRINGPARAM("calc_StarCalc_30_VorlageTemplate"),
-    RTL_CONSTASCII_STRINGPARAM("calc_StarCalc_40"),
-    RTL_CONSTASCII_STRINGPARAM("calc_StarCalc_40_VorlageTemplate"),
-    RTL_CONSTASCII_STRINGPARAM("calc_StarCalc_50"),
-    RTL_CONSTASCII_STRINGPARAM("calc_StarCalc_50_VorlageTemplate"),
-    RTL_CONSTASCII_STRINGPARAM("chart_StarChart_30"),
-    RTL_CONSTASCII_STRINGPARAM("chart_StarChart_40"),
-    RTL_CONSTASCII_STRINGPARAM("chart_StarChart_50"),
-    RTL_CONSTASCII_STRINGPARAM("draw_StarDraw_30"),
-    RTL_CONSTASCII_STRINGPARAM("draw_StarDraw_30_Vorlage"),
-    RTL_CONSTASCII_STRINGPARAM("draw_StarDraw_50"),
-    RTL_CONSTASCII_STRINGPARAM("draw_StarDraw_50_Vorlage"),
-    RTL_CONSTASCII_STRINGPARAM("impress_StarImpress_40"),
-    RTL_CONSTASCII_STRINGPARAM("impress_StarImpress_40_Vorlage"),
-    RTL_CONSTASCII_STRINGPARAM("impress_StarImpress_50"),
-    RTL_CONSTASCII_STRINGPARAM("impress_StarImpress_50_Vorlage"),
-    RTL_CONSTASCII_STRINGPARAM("impress_StarImpress_50_packed"),
-    RTL_CONSTASCII_STRINGPARAM("math_StarMath_30"),
-    RTL_CONSTASCII_STRINGPARAM("math_StarMath_40"),
-    RTL_CONSTASCII_STRINGPARAM("math_StarMath_50"),
-    RTL_CONSTASCII_STRINGPARAM("writer_StarWriter_30"),
-    RTL_CONSTASCII_STRINGPARAM("writer_StarWriter_30_VorlageTemplate"),
-    RTL_CONSTASCII_STRINGPARAM("writer_StarWriter_40"),
-    RTL_CONSTASCII_STRINGPARAM("writer_StarWriter_40_VorlageTemplate"),
-    RTL_CONSTASCII_STRINGPARAM("writer_globaldocument_StarWriter_40GlobalDocument"),
-    RTL_CONSTASCII_STRINGPARAM("writer_StarWriter_50"),
-    RTL_CONSTASCII_STRINGPARAM("writer_StarWriter_50_VorlageTemplate"),
-    RTL_CONSTASCII_STRINGPARAM("writer_globaldocument_StarWriter_50GlobalDocument")
+    {RTL_CONSTASCII_STRINGPARAM("writer_StarWriter_10")},
+    {RTL_CONSTASCII_STRINGPARAM("writer_StarWriter_20")},
+    {RTL_CONSTASCII_STRINGPARAM("writer_StarWriter_DOS")},
+    {RTL_CONSTASCII_STRINGPARAM("writer_Lotus_1_2_3_10_DOS_StarWriter")},
+    {RTL_CONSTASCII_STRINGPARAM("writer_Lotus_1_2_3_10_WIN_StarWriter")},
+    {RTL_CONSTASCII_STRINGPARAM("writer_Ami_Pro_1x_31_W4W")},                 // 5 , 33
+    {RTL_CONSTASCII_STRINGPARAM("writer_CTOS_DEF_W4W")},                      // 6 , 36
+    {RTL_CONSTASCII_STRINGPARAM("writer_Claris_Works_W4W")},                  // 7 , 57
+    {RTL_CONSTASCII_STRINGPARAM("writer_DCA_Revisable_Form_Text_W4W")},       // 8 , 15
+    {RTL_CONSTASCII_STRINGPARAM("writer_DCA_with_Display_Write_5_W4W")},      // 9 , 15
+    {RTL_CONSTASCII_STRINGPARAM("writer_DCAFFT_Final_Form_Text_W4W")},        //10, 32
+    {RTL_CONSTASCII_STRINGPARAM("writer_DEC_DX_W4W")},                        //11, 30
+    {RTL_CONSTASCII_STRINGPARAM("writer_DEC_WPS_PLUS_W4W")},                  //12, 45
+    {RTL_CONSTASCII_STRINGPARAM("writer_DataGeneral_CEO_Write_W4W")},         //13, 104
+    {RTL_CONSTASCII_STRINGPARAM("writer_DisplayWrite_20_4x_W4W")},            //14, 15
+    {RTL_CONSTASCII_STRINGPARAM("writer_DisplayWrite_5x_W4W")},               //15, 15
+    {RTL_CONSTASCII_STRINGPARAM("writer_EBCDIC_W4W")},                        //16, 02
+    {RTL_CONSTASCII_STRINGPARAM("writer_Enable_W4W")},                        //17, 28
+    {RTL_CONSTASCII_STRINGPARAM("writer_Frame_Maker_MIF_30_W4W")},            //18, 42
+    {RTL_CONSTASCII_STRINGPARAM("writer_Frame_Maker_MIF_40_W4W")},            //19, 42
+    {RTL_CONSTASCII_STRINGPARAM("writer_Frame_Maker_MIF_50_W4W")},            //20, 42
+    {RTL_CONSTASCII_STRINGPARAM("writer_Frame_Work_III_W4W")},                //21, 29
+    {RTL_CONSTASCII_STRINGPARAM("writer_Frame_Work_IV_W4W")},                 //22, 29
+    {RTL_CONSTASCII_STRINGPARAM("writer_HP_AdvanceWrite_Plus_W4W")},          //23, 22
+    {RTL_CONSTASCII_STRINGPARAM("writer_ICL_Office_Power_6_W4W")},            //24, 102
+    {RTL_CONSTASCII_STRINGPARAM("writer_ICL_Office_Power_7_W4W")},            //25, 102
+    {RTL_CONSTASCII_STRINGPARAM("writer_Interleaf_W4W")},                     //26, 35
+    {RTL_CONSTASCII_STRINGPARAM("writer_Interleaf_5_6_W4W")},                 //27, 46
+    {RTL_CONSTASCII_STRINGPARAM("writer_Legacy_Winstar_onGO_W4W")},           //28, 37
+    {RTL_CONSTASCII_STRINGPARAM("writer_Lotus_Manuscript_W4W")},              //29, 24
+    {RTL_CONSTASCII_STRINGPARAM("writer_MASS_11_Rel_80_83_W4W")},             //30, 31
+    {RTL_CONSTASCII_STRINGPARAM("writer_MASS_11_Rel_85_90_W4W")},             //31, 31
+    {RTL_CONSTASCII_STRINGPARAM("writer_MS_MacWord_30_W4W")},                 //32, 54
+    {RTL_CONSTASCII_STRINGPARAM("writer_MS_MacWord_40_W4W")},                 //33, 54
+    {RTL_CONSTASCII_STRINGPARAM("writer_MS_MacWord_5x_W4W")},                 //34, 54
+    {RTL_CONSTASCII_STRINGPARAM("writer_MS_WinWord_1x_W4W")},                 //35, 44
+    {RTL_CONSTASCII_STRINGPARAM("writer_MS_WinWord_2x_W4W")},                 //36, 44
+    {RTL_CONSTASCII_STRINGPARAM("writer_MS_Word_3x_W4W")},                    //37, 05
+    {RTL_CONSTASCII_STRINGPARAM("writer_MS_Word_4x_W4W")},                    //38, 05
+    {RTL_CONSTASCII_STRINGPARAM("writer_MS_Word_5x_W4W")},                    //39, 05
+    {RTL_CONSTASCII_STRINGPARAM("writer_MS_Word_6x_W4W")},                    //40, 49
+    {RTL_CONSTASCII_STRINGPARAM("writer_MS_Works_20_DOS_W4W")},               //41, 39
+    {RTL_CONSTASCII_STRINGPARAM("writer_MS_Works_30_Win_W4W")},               //42, 39
+    {RTL_CONSTASCII_STRINGPARAM("writer_MS_Works_40_Mac_W4W")},               //43, 58
+    {RTL_CONSTASCII_STRINGPARAM("writer_Mac_Write_4x_50_W4W")},               //44, 51
+    {RTL_CONSTASCII_STRINGPARAM("writer_Mac_Write_II_W4W")},                  //45, 52
+    {RTL_CONSTASCII_STRINGPARAM("writer_Mac_Write_Pro_W4W")},                 //46, 56
+    {RTL_CONSTASCII_STRINGPARAM("writer_MultiMate_33_W4W")},                  //47, 10
+    {RTL_CONSTASCII_STRINGPARAM("writer_MultiMate_4_W4W")},                   //48, 10
+    {RTL_CONSTASCII_STRINGPARAM("writer_MultiMate_Adv_36_W4W")},              //49, 10
+    {RTL_CONSTASCII_STRINGPARAM("writer_MultiMate_Adv_II_37_W4W")},           //50, 10
+    {RTL_CONSTASCII_STRINGPARAM("writer_NAVY_DIF_W4W")},                      //51, 18
+    {RTL_CONSTASCII_STRINGPARAM("writer_OfficeWriter_40_W4W")},               //52, 16
+    {RTL_CONSTASCII_STRINGPARAM("writer_OfficeWriter_50_W4W")},               //53, 16
+    {RTL_CONSTASCII_STRINGPARAM("writer_OfficeWriter_6x_W4W")},               //54, 16
+    {RTL_CONSTASCII_STRINGPARAM("writer_PFS_First_Choice_10_W4W")},           //55, 08
+    {RTL_CONSTASCII_STRINGPARAM("writer_PFS_First_Choice_20_W4W")},           //56, 08
+    {RTL_CONSTASCII_STRINGPARAM("writer_PFS_First_Choice_30_W4W")},           //57, 08
+    {RTL_CONSTASCII_STRINGPARAM("writer_PFS_Write_W4W")},                     //58, 08
+    {RTL_CONSTASCII_STRINGPARAM("writer_Peach_Text_W4W")},                    //59, 27
+    {RTL_CONSTASCII_STRINGPARAM("writer_Professional_Write_10_W4W")},         //60, 33
+    {RTL_CONSTASCII_STRINGPARAM("writer_Professional_Write_2x_W4W")},         //61, 33
+    {RTL_CONSTASCII_STRINGPARAM("writer_Professional_Write_Plus_W4W")},       //62, 33
+    {RTL_CONSTASCII_STRINGPARAM("writer_QA_Write_10_30_W4W")},                //63, 23
+    {RTL_CONSTASCII_STRINGPARAM("writer_QA_Write_40_W4W")},                   //64, 23
+    {RTL_CONSTASCII_STRINGPARAM("writer_Rapid_File_10_W4W")},                 //65, 25
+    {RTL_CONSTASCII_STRINGPARAM("writer_Rapid_File_12_W4W")},                 //66, 25
+    {RTL_CONSTASCII_STRINGPARAM("writer_Samna_Word_IV_IV_Plus_W4W")},         //67, 22
+    {RTL_CONSTASCII_STRINGPARAM("writer_Total_Word_W4W")},                    //68, 14
+    {RTL_CONSTASCII_STRINGPARAM("writer_Uniplex_V7_V8_W4W")},                 //69, 101
+    {RTL_CONSTASCII_STRINGPARAM("writer_Uniplex_onGO_W4W")},                  //70, 101
+    {RTL_CONSTASCII_STRINGPARAM("writer_VolksWriter_3_and_4_W4W")},           //71, 14
+    {RTL_CONSTASCII_STRINGPARAM("writer_VolksWriter_Deluxe_W4W")},            //72, 11
+    {RTL_CONSTASCII_STRINGPARAM("writer_WITA_W4W")},                          //73, 34
+    {RTL_CONSTASCII_STRINGPARAM("writer_Wang_II_SWP_W4W")},                   //74, 88
+    {RTL_CONSTASCII_STRINGPARAM("writer_Wang_PC_W4W")},                       //75, 26
+    {RTL_CONSTASCII_STRINGPARAM("writer_Wang_WP_Plus_W4W")},                  //76, 89
+    {RTL_CONSTASCII_STRINGPARAM("writer_Win_Write_3x_W4W")},                  //77, 43
+    {RTL_CONSTASCII_STRINGPARAM("writer_WiziWord_30_W4W")},                   //78, 47
+    {RTL_CONSTASCII_STRINGPARAM("writer_WordPerfect_Win_51_52_W4W")},         //79, 07
+    {RTL_CONSTASCII_STRINGPARAM("writer_WordPerfect_Win_60_W4W")},            //80, 48
+    {RTL_CONSTASCII_STRINGPARAM("writer_WordPerfect_Win_61_W4W")},            //81, 48
+    {RTL_CONSTASCII_STRINGPARAM("writer_WordPerfect_Win_70_W4W")},            //82, 07
+    {RTL_CONSTASCII_STRINGPARAM("writer_WordPerfect_41_W4W")},                //83, 06
+    {RTL_CONSTASCII_STRINGPARAM("writer_WordPerfect_42_W4W")},                //84, 06
+    {RTL_CONSTASCII_STRINGPARAM("writer_WordPerfect_50_W4W")},                //85, 07
+    {RTL_CONSTASCII_STRINGPARAM("writer_WordPerfect_51_W4W")},                //86, 07
+    {RTL_CONSTASCII_STRINGPARAM("writer_WordPerfect_60_W4W")},                //87, 07
+    {RTL_CONSTASCII_STRINGPARAM("writer_WordPerfect_61_W4W")},                //88, 07
+    {RTL_CONSTASCII_STRINGPARAM("writer_WordPerfect_Mac_1_W4W")},             //89, 59
+    {RTL_CONSTASCII_STRINGPARAM("writer_WordPerfect_Mac_2_W4W")},             //90, 60
+    {RTL_CONSTASCII_STRINGPARAM("writer_WordPerfect_Mac_3_W4W")},             //91, 60
+    {RTL_CONSTASCII_STRINGPARAM("writer_WordStar_Win_1x_20_W4W")},            //92, 04
+    {RTL_CONSTASCII_STRINGPARAM("writer_WordStar_2000_Rel_30_W4W")},          //93, 09
+    {RTL_CONSTASCII_STRINGPARAM("writer_WordStar_2000_Rel_35_W4W")},          //94, 09
+    {RTL_CONSTASCII_STRINGPARAM("writer_WordStar_33x_W4W")},                  //95, 04
+    {RTL_CONSTASCII_STRINGPARAM("writer_WordStar_345_W4W")},                  //96, 04
+    {RTL_CONSTASCII_STRINGPARAM("writer_WordStar_40_W4W")},                   //97, 04
+    {RTL_CONSTASCII_STRINGPARAM("writer_WordStar_50_W4W")},                   //98, 04
+    {RTL_CONSTASCII_STRINGPARAM("writer_WordStar_55_W4W")},                   //99, 04
+    {RTL_CONSTASCII_STRINGPARAM("writer_WordStar_60_W4W")},                   //100, 04
+    {RTL_CONSTASCII_STRINGPARAM("writer_WordStar_70_W4W")},                   //101, 04
+    {RTL_CONSTASCII_STRINGPARAM("writer_WriteNow_30_Macintosh_W4W")},         //102, 62
+    {RTL_CONSTASCII_STRINGPARAM("writer_Writing_Assistant_W4W")},             //103, 13
+    {RTL_CONSTASCII_STRINGPARAM("writer_XEROX_XIF_50_Illustrator_W4W")},      //104, 103
+    {RTL_CONSTASCII_STRINGPARAM("writer_XEROX_XIF_50_W4W")},                  //105, 103
+    {RTL_CONSTASCII_STRINGPARAM("writer_XEROX_XIF_60_Color_Bitmap_W4W")},     //106, 103
+    {RTL_CONSTASCII_STRINGPARAM("writer_XEROX_XIF_60_Res_Graphic_W4W")},      //107, 103
+    {RTL_CONSTASCII_STRINGPARAM("writer_XyWrite_Win_10_W4W")},                //108, 17
+    {RTL_CONSTASCII_STRINGPARAM("writer_XyWrite_III_W4W")},                   //109, 17
+    {RTL_CONSTASCII_STRINGPARAM("writer_XyWrite_IIIP_W4W")},                  //110, 17
+    {RTL_CONSTASCII_STRINGPARAM("writer_XyWrite_IV_W4W")},                    //111, 17
+    {RTL_CONSTASCII_STRINGPARAM("writer_XyWrite_Sig_Win_W4W")},               //112, 17
+    {RTL_CONSTASCII_STRINGPARAM("writer_XyWrite_Signature_W4W")},             //113, 17
+    {RTL_CONSTASCII_STRINGPARAM("calc_StarCalc_30")},
+    {RTL_CONSTASCII_STRINGPARAM("calc_StarCalc_30_VorlageTemplate")},
+    {RTL_CONSTASCII_STRINGPARAM("calc_StarCalc_40")},
+    {RTL_CONSTASCII_STRINGPARAM("calc_StarCalc_40_VorlageTemplate")},
+    {RTL_CONSTASCII_STRINGPARAM("calc_StarCalc_50")},
+    {RTL_CONSTASCII_STRINGPARAM("calc_StarCalc_50_VorlageTemplate")},
+    {RTL_CONSTASCII_STRINGPARAM("chart_StarChart_30")},
+    {RTL_CONSTASCII_STRINGPARAM("chart_StarChart_40")},
+    {RTL_CONSTASCII_STRINGPARAM("chart_StarChart_50")},
+    {RTL_CONSTASCII_STRINGPARAM("draw_StarDraw_30")},
+    {RTL_CONSTASCII_STRINGPARAM("draw_StarDraw_30_Vorlage")},
+    {RTL_CONSTASCII_STRINGPARAM("draw_StarDraw_50")},
+    {RTL_CONSTASCII_STRINGPARAM("draw_StarDraw_50_Vorlage")},
+    {RTL_CONSTASCII_STRINGPARAM("impress_StarImpress_40")},
+    {RTL_CONSTASCII_STRINGPARAM("impress_StarImpress_40_Vorlage")},
+    {RTL_CONSTASCII_STRINGPARAM("impress_StarImpress_50")},
+    {RTL_CONSTASCII_STRINGPARAM("impress_StarImpress_50_Vorlage")},
+    {RTL_CONSTASCII_STRINGPARAM("impress_StarImpress_50_packed")},
+    {RTL_CONSTASCII_STRINGPARAM("math_StarMath_30")},
+    {RTL_CONSTASCII_STRINGPARAM("math_StarMath_40")},
+    {RTL_CONSTASCII_STRINGPARAM("math_StarMath_50")},
+    {RTL_CONSTASCII_STRINGPARAM("writer_StarWriter_30")},
+    {RTL_CONSTASCII_STRINGPARAM("writer_StarWriter_30_VorlageTemplate")},
+    {RTL_CONSTASCII_STRINGPARAM("writer_StarWriter_40")},
+    {RTL_CONSTASCII_STRINGPARAM("writer_StarWriter_40_VorlageTemplate")},
+    {RTL_CONSTASCII_STRINGPARAM("writer_globaldocument_StarWriter_40GlobalDocument")},
+    {RTL_CONSTASCII_STRINGPARAM("writer_StarWriter_50")},
+    {RTL_CONSTASCII_STRINGPARAM("writer_StarWriter_50_VorlageTemplate")},
+    {RTL_CONSTASCII_STRINGPARAM("writer_globaldocument_StarWriter_50GlobalDocument")}
 };
 //list of Word4Word filters the identifiers are returned by AutoDetec
 static const sal_uInt8 nW4WFilterCount = 109;
diff --git a/binfilter/inc/bf_sch/chtmodel.hxx b/binfilter/inc/bf_sch/chtmodel.hxx
index 6eb9e3d..2b084e5 100644
--- a/binfilter/inc/bf_sch/chtmodel.hxx
+++ b/binfilter/inc/bf_sch/chtmodel.hxx
@@ -213,7 +213,7 @@ public:
 
     BOOL                IsReal3D()const
                             { return (Is3DChart() /*&& !IsPieChart()*/); }
-    BOOL                HasBarConnectors( long nRow ) const
+    BOOL                HasBarConnectors( long /*nRow*/ ) const
                             { return (BOOL)(m_nDefaultColorSet&CHSPECIAL_TRACELINES); }
     inline void         SetBarConnectors( BOOL bOn, long nRow );
 
@@ -1171,7 +1171,7 @@ private:
 // inline methods
 // ==============
 
-inline void         ChartModel::SetBarConnectors( BOOL bOn, long nRow )
+inline void         ChartModel::SetBarConnectors( BOOL bOn, long /*nRow*/ )
 {
     m_nDefaultColorSet = bOn
         ? m_nDefaultColorSet|CHSPECIAL_TRACELINES
diff --git a/binfilter/inc/bf_sfx2/bitset.hxx b/binfilter/inc/bf_sfx2/bitset.hxx
index ed352c1..f17d9ac 100644
--- a/binfilter/inc/bf_sfx2/bitset.hxx
+++ b/binfilter/inc/bf_sfx2/bitset.hxx
@@ -108,7 +108,7 @@ inline BitSet BitSet::operator|( USHORT nBit ) const
 
 // creates the asymetric difference
 
-inline BitSet BitSet::operator-( const BitSet& rSet ) const
+inline BitSet BitSet::operator-( const BitSet& /*rSet*/ ) const
 {
     return BitSet();
 }
@@ -125,7 +125,7 @@ inline BitSet BitSet::operator-( USHORT nId ) const
 
 // removes the bits contained in rSet
 
-inline BitSet& BitSet::operator-=( const BitSet& rSet )
+inline BitSet& BitSet::operator-=( const BitSet& /*rSet*/ )
 {
     return *this;
 }
@@ -142,7 +142,7 @@ inline BitSet BitSet::operator&( const BitSet& rSet ) const
 
 // intersects with another bitset
 
-inline BitSet& BitSet::operator&=( const BitSet& rSet )
+inline BitSet& BitSet::operator&=( const BitSet& /*rSet*/ )
 {
     return *this;
 }
@@ -158,7 +158,7 @@ inline BitSet BitSet::operator^( const BitSet& rSet ) const
 
 // creates the symetric difference with a single bit
 
-inline BitSet BitSet::operator^( USHORT nBit ) const
+inline BitSet BitSet::operator^( USHORT /*nBit*/ ) const
 {
     return BitSet();
 }
@@ -174,7 +174,7 @@ inline BitSet& BitSet::operator^=( const BitSet& rSet )
 #ifdef BITSET_READY
 // builds the symetric difference with a single bit
 
-inline BitSet& BitSet::operator^=( USHORT nBit )
+inline BitSet& BitSet::operator^=( USHORT /*nBit*/ )
 {
     // crash!!!
     return BitSet();
@@ -184,7 +184,7 @@ inline BitSet& BitSet::operator^=( USHORT nBit )
 
 // determines if the other bitset is a real superset
 
-inline BOOL BitSet::IsRealSubSet( const BitSet& rSet ) const
+inline BOOL BitSet::IsRealSubSet( const BitSet& /*rSet*/ ) const
 {
     return FALSE;
 }
@@ -192,7 +192,7 @@ inline BOOL BitSet::IsRealSubSet( const BitSet& rSet ) const
 
 // detsermines if the other bitset is a superset or equal
 
-inline BOOL BitSet::IsSubSet( const BitSet& rSet ) const
+inline BOOL BitSet::IsSubSet( const BitSet& /*rSet*/ ) const
 {
     return FALSE;
 }
@@ -200,7 +200,7 @@ inline BOOL BitSet::IsSubSet( const BitSet& rSet ) const
 
 // determines if the other bitset is a real subset
 
-inline BOOL BitSet::IsRealSuperSet( const BitSet& rSet ) const
+inline BOOL BitSet::IsRealSuperSet( const BitSet& /*rSet*/ ) const
 {
     return FALSE;
 }
@@ -209,7 +209,7 @@ inline BOOL BitSet::IsRealSuperSet( const BitSet& rSet ) const
 
 // determines if the other bitset is a subset or equal
 
-inline BOOL BitSet::IsSuperSet( const BitSet& rSet ) const
+inline BOOL BitSet::IsSuperSet( const BitSet& /*rSet*/ ) const
 {
     return FALSE;
 }
@@ -217,7 +217,7 @@ inline BOOL BitSet::IsSuperSet( const BitSet& rSet ) const
 
 // determines if the bit is the only one in the bitset
 
-inline BOOL BitSet::operator==( USHORT nBit ) const
+inline BOOL BitSet::operator==( USHORT /*nBit*/ ) const
 {
     return FALSE;
 }
diff --git a/binfilter/inc/bf_svx/svdobj.hxx b/binfilter/inc/bf_svx/svdobj.hxx
index deee5c9..bf63eec 100644
--- a/binfilter/inc/bf_svx/svdobj.hxx
+++ b/binfilter/inc/bf_svx/svdobj.hxx
@@ -1076,7 +1076,7 @@ public:
     // setting the UNO representation is allowed for the UNO representation itself only!
     void setUnoShape(
         const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& _rxUnoShape,
-        GrantXShapeAccess aGrant
+        GrantXShapeAccess /*aGrant*/
     )
     {
         mxUnoShape = _rxUnoShape;
diff --git a/binfilter/inc/bf_svx/svdotext.hxx b/binfilter/inc/bf_svx/svdotext.hxx
index 9116ccd..ca5d0b7 100644
--- a/binfilter/inc/bf_svx/svdotext.hxx
+++ b/binfilter/inc/bf_svx/svdotext.hxx
@@ -385,7 +385,7 @@ public:
         The region to paint the outliner content into. This is useful
         to e.g. determine the top, left position of text in shapes.
      */
-    void UpdateOutlinerFormatting( SdrOutliner& rOutl, Rectangle& rPaintRect ){DBG_BF_ASSERT(0, "STRIP");}//STRIP001 void UpdateOutlinerFormatting( SdrOutliner& rOutl, Rectangle& rPaintRect ) const;
+    void UpdateOutlinerFormatting( SdrOutliner& /*rOutl*/, Rectangle& /*rPaintRect*/ ){DBG_BF_ASSERT(0, "STRIP");}
 
     // pre- and postprocessing for objects for saving
     virtual void PreSave();
diff --git a/binfilter/inc/bf_svx/svdpage.hxx b/binfilter/inc/bf_svx/svdpage.hxx
index 71f7755..e169871 100644
--- a/binfilter/inc/bf_svx/svdpage.hxx
+++ b/binfilter/inc/bf_svx/svdpage.hxx
@@ -299,8 +299,8 @@ public:

... etc. - the rest is truncated


More information about the Libreoffice-commits mailing list