[Libreoffice-commits] .: binfilter/bf_sc binfilter/inc
Caolán McNamara
caolan at kemper.freedesktop.org
Fri Dec 31 06:01:03 PST 2010
binfilter/bf_sc/source/ui/docshell/makefile.mk | 1
binfilter/bf_sc/source/ui/docshell/sc_arealink.cxx | 2
binfilter/bf_sc/source/ui/docshell/sc_docsh.cxx | 49 ++++++++++-----------
binfilter/bf_sc/source/ui/docshell/sc_docsh2.cxx | 8 +--
binfilter/bf_sc/source/ui/docshell/sc_docsh5.cxx | 2
binfilter/bf_sc/source/ui/docshell/sc_docsh6.cxx | 14 +++---
binfilter/bf_sc/source/ui/docshell/sc_impex.cxx | 18 +++----
binfilter/bf_sc/source/ui/docshell/sc_pntlock.cxx | 2
binfilter/bf_sc/source/ui/docshell/sc_tablink.cxx | 2
binfilter/bf_sc/source/ui/inc/autostyl.hxx | 2
binfilter/bf_sc/source/ui/inc/viewdata.hxx | 2
binfilter/inc/bf_sc/hints.hxx | 5 --
binfilter/inc/bf_svx/dataaccessdescriptor.hxx | 12 ++---
13 files changed, 59 insertions(+), 60 deletions(-)
New commits:
commit 6b947b323cfbd543224520a13448088a9b223def
Author: Caolán McNamara <caolanm at redhat.com>
Date: Fri Dec 31 14:00:57 2010 +0000
WaE: make this dir warning free
diff --git a/binfilter/bf_sc/source/ui/docshell/makefile.mk b/binfilter/bf_sc/source/ui/docshell/makefile.mk
index b73ff86..9ca2216 100644
--- a/binfilter/bf_sc/source/ui/docshell/makefile.mk
+++ b/binfilter/bf_sc/source/ui/docshell/makefile.mk
@@ -25,7 +25,6 @@
#
#*************************************************************************
-EXTERNAL_WARNINGS_NOT_ERRORS := TRUE
PRJ=..$/..$/..$/..
BFPRJ=..$/..$/..
diff --git a/binfilter/bf_sc/source/ui/docshell/sc_arealink.cxx b/binfilter/bf_sc/source/ui/docshell/sc_arealink.cxx
index f3bda62..1889339 100644
--- a/binfilter/bf_sc/source/ui/docshell/sc_arealink.cxx
+++ b/binfilter/bf_sc/source/ui/docshell/sc_arealink.cxx
@@ -381,7 +381,7 @@ namespace binfilter {
/*N*/ }
-/*N*/ IMPL_LINK( ScAreaLink, RefreshHdl, ScAreaLink*, pCaller )
+/*N*/ IMPL_LINK( ScAreaLink, RefreshHdl, ScAreaLink*, EMPTYARG )
/*N*/ {
DBG_BF_ASSERT(0, "STRIP"); return 0; //STRIP001 long nRes = Refresh( aFileName, aFilterName, aSourceArea,
/*N*/ }
diff --git a/binfilter/bf_sc/source/ui/docshell/sc_docsh.cxx b/binfilter/bf_sc/source/ui/docshell/sc_docsh.cxx
index e402ef8..e6d4d95 100644
--- a/binfilter/bf_sc/source/ui/docshell/sc_docsh.cxx
+++ b/binfilter/bf_sc/source/ui/docshell/sc_docsh.cxx
@@ -532,7 +532,7 @@ static const sal_Char pFilterRtf[] = "Rich Text Format (StarCalc)";
DBG_ERROR("The Modificator should exist");
/*N*/ }
-/*N*/ BOOL ScDocShell::LoadXML( SfxMedium* pMedium, SvStorage* pStor )
+/*N*/ BOOL ScDocShell::LoadXML( SfxMedium* pInMedium, SvStorage* pStor )
/*N*/ {
/*N*/ RTL_LOGFILE_CONTEXT_AUTHOR ( aLog, "sc", "sb99857", "ScDocShell::LoadXML" );
/*N*/
@@ -542,7 +542,7 @@ static const sal_Char pFilterRtf[] = "Rich Text Format (StarCalc)";
/*N*/
/*N*/ BeforeXMLLoading();
/*N*/
-/*N*/ ScXMLImportWrapper aImport( aDocument, pMedium, pStor );
+/*N*/ ScXMLImportWrapper aImport( aDocument, pInMedium, pStor );
/*N*/
/*N*/ sal_Bool bRet(sal_False);
/*N*/ if (GetCreateMode() != SFX_CREATE_MODE_ORGANIZER)
@@ -557,11 +557,11 @@ static const sal_Char pFilterRtf[] = "Rich Text Format (StarCalc)";
/*N*/ return bRet;
/*N*/ }
-/*N*/ BOOL ScDocShell::SaveXML( SfxMedium* pMedium, SvStorage* pStor )
+/*N*/ BOOL ScDocShell::SaveXML( SfxMedium* pInMedium, SvStorage* pStor )
/*N*/ {
/*N*/ RTL_LOGFILE_CONTEXT_AUTHOR ( aLog, "sc", "sb99857", "ScDocShell::SaveXML" );
/*N*/
-/*N*/ ScXMLImportWrapper aImport( aDocument, pMedium, pStor );
+/*N*/ ScXMLImportWrapper aImport( aDocument, pInMedium, pStor );
/*N*/ sal_Bool bRet(sal_False);
/*N*/ if (GetCreateMode() != SFX_CREATE_MODE_ORGANIZER)
/*N*/ bRet = aImport.Export(sal_False);
@@ -1065,30 +1065,34 @@ DBG_BF_ASSERT(0, "STRIP"); //STRIP001 //STRIP001 /*N*/ // SvStream* pStream =
#define __SCDOCSHELL_INIT \
aDocument ( SCDOCMODE_DOCUMENT, this ), \
+ aDdeTextFmt(String::CreateFromAscii(RTL_CONSTASCII_STRINGPARAM("TEXT"))), \
+ nPrtToScreenFactor( 1.0 ), \
pFontList ( NULL ), \
bHeaderOn ( TRUE ), \
bFooterOn ( TRUE ), \
- pDocHelper ( NULL ), \
- pAutoStyleList ( NULL ), \
- pOldJobSetup ( NULL ), \
- pPaintLockData ( NULL ), \
- nPrtToScreenFactor( 1.0 ), \
+ bNoInformLost( TRUE ), \
bIsEmpty ( TRUE ), \
bIsInUndo ( FALSE ), \
bDocumentModifiedPending( FALSE ), \
nDocumentLock ( 0 ), \
nCanUpdate (::com::sun::star::document::UpdateDocMode::ACCORDING_TO_CONFIG), \
bUpdateEnabled ( TRUE ), \
+ pDocHelper ( NULL ), \
+ pAutoStyleList ( NULL ), \
+ pPaintLockData ( NULL ), \
+ pOldJobSetup ( NULL ), \
pVirtualDevice_100th_mm ( NULL ), \
pModificator ( NULL )
//------------------------------------------------------------------
/*N*/ ScDocShell::ScDocShell( const ScDocShell& rShell )
-/*N*/ : SfxObjectShell( rShell.GetCreateMode() ),
-/*N*/ aDdeTextFmt(String::CreateFromAscii(RTL_CONSTASCII_STRINGPARAM("TEXT"))),
-/*N*/ bNoInformLost( TRUE ),
-/*N*/ __SCDOCSHELL_INIT
+/*N*/ : SvRefBase()
+/*N*/ , SotObject()
+/*N*/ , SvObject()
+/*N*/ , SfxObjectShell( rShell.GetCreateMode() )
+/*N*/ , SfxListener()
+/*N*/ , __SCDOCSHELL_INIT
/*N*/ {
/*?*/ DBG_BF_ASSERT(0, "STRIP"); //STRIP001 RTL_LOGFILE_CONTEXT_AUTHOR ( aLog, "sc", "nn93723", "ScDocShell::ScDocShell" );
/*N*/ }
@@ -1097,8 +1101,6 @@ DBG_BF_ASSERT(0, "STRIP"); //STRIP001 //STRIP001 /*N*/ // SvStream* pStream =
/*N*/ ScDocShell::ScDocShell( SfxObjectCreateMode eMode )
/*N*/ : SfxObjectShell( eMode ),
-/*N*/ aDdeTextFmt(String::CreateFromAscii(RTL_CONSTASCII_STRINGPARAM("TEXT"))),
-/*N*/ bNoInformLost( TRUE ),
/*N*/ __SCDOCSHELL_INIT
/*N*/ {
/*N*/ RTL_LOGFILE_CONTEXT_AUTHOR ( aLog, "sc", "nn93723", "ScDocShell::ScDocShell" );
@@ -1164,24 +1166,24 @@ DBG_BF_ASSERT(0, "STRIP"); //STRIP001 //STRIP001 /*N*/ // SvStream* pStream =
/*N*/ }
-/*N*/ void ScDocShell::SetDocumentModified( BOOL bIsModified /* = TRUE */ )
+/*N*/ void ScDocShell::SetDocumentModified( BOOL bInIsModified /* = TRUE */ )
/*N*/ {
/*N*/ // BroadcastUno muss auch mit pPaintLockData sofort passieren
/*N*/ //! auch bei SetDrawModified, wenn Drawing angebunden ist
/*N*/ //! dann eigener Hint???
/*N*/
-/*N*/ if (bIsModified)
+/*N*/ if (bInIsModified)
/*N*/ aDocument.BroadcastUno( SfxSimpleHint( SFX_HINT_DATACHANGED ) );
/*N*/
-/*N*/ if ( pPaintLockData && bIsModified )
+/*N*/ if ( pPaintLockData && bInIsModified )
/*N*/ {
/*N*/ pPaintLockData->SetModified(); // spaeter...
/*N*/ return;
/*N*/ }
/*N*/
-/*N*/ SetDrawModified( bIsModified );
+/*N*/ SetDrawModified( bInIsModified );
/*N*/
-/*N*/ if ( bIsModified )
+/*N*/ if ( bInIsModified )
/*N*/ {
/*N*/ if ( aDocument.IsAutoCalcShellDisabled() )
/*?*/ SetDocumentModifiedPending( TRUE );
@@ -1216,13 +1218,12 @@ DBG_BF_ASSERT(0, "STRIP"); //STRIP001 //STRIP001 /*N*/ // SvStream* pStream =
// (Drawing muss auch beim normalen SetDocumentModified upgedated werden,
// z.B. bei Tabelle loeschen etc.)
-/*N*/ void ScDocShell::SetDrawModified( BOOL bIsModified /* = TRUE */ )
+/*N*/ void ScDocShell::SetDrawModified( BOOL bInIsModified /* = TRUE */ )
/*N*/ {
-/*N*/ bIsModified != IsModified() ;
/*N*/
-/*N*/ SetModified( bIsModified );
+/*N*/ SetModified( bInIsModified );
/*N*/
-/*N*/ if (bIsModified)
+/*N*/ if (bInIsModified)
/*N*/ {
/*N*/ if ( aDocument.IsChartListenerCollectionNeedsUpdate() )
/*N*/ {
diff --git a/binfilter/bf_sc/source/ui/docshell/sc_docsh2.cxx b/binfilter/bf_sc/source/ui/docshell/sc_docsh2.cxx
index 9c05429..4daf182 100644
--- a/binfilter/bf_sc/source/ui/docshell/sc_docsh2.cxx
+++ b/binfilter/bf_sc/source/ui/docshell/sc_docsh2.cxx
@@ -211,13 +211,13 @@ using namespace ::com::sun::star;
/*N*/ // Loeschen wie in SvPersist::CleanUp
/*N*/
/*N*/ ScDrawLayer* pDrawLayer = aDocument.GetDrawLayer();
-/*N*/ const SvInfoObjectMemberList* pChildList = GetObjectList();
+/*N*/ const SvInfoObjectMemberList* pLclChildList = GetObjectList();
/*N*/
-/*N*/ if( pChildList && pChildList->Count() )
+/*N*/ if( pLclChildList && pLclChildList->Count() )
/*N*/ {
-/*N*/ for( ULONG i=0; i<pChildList->Count(); )
+/*N*/ for( ULONG i=0; i<pLclChildList->Count(); )
/*N*/ {
-/*N*/ SvInfoObjectRef pEle = pChildList->GetObject(i);
+/*N*/ SvInfoObjectRef pEle = pLclChildList->GetObject(i);
/*N*/ String aObjName = pEle->GetObjName();
/*N*/ BOOL bFound = FALSE;
/*N*/ if ( pDrawLayer )
diff --git a/binfilter/bf_sc/source/ui/docshell/sc_docsh5.cxx b/binfilter/bf_sc/source/ui/docshell/sc_docsh5.cxx
index aeae803..3949435 100644
--- a/binfilter/bf_sc/source/ui/docshell/sc_docsh5.cxx
+++ b/binfilter/bf_sc/source/ui/docshell/sc_docsh5.cxx
@@ -544,7 +544,7 @@ namespace binfilter {
/*N*/ }
-/*N*/ IMPL_LINK( ScDocShell, RefreshDBDataHdl, ScDBData*, pDBData )
+/*N*/ IMPL_LINK( ScDocShell, RefreshDBDataHdl, ScDBData*, EMPTYARG )
/*N*/ {
DBG_BF_ASSERT(0, "STRIP"); return 0; //STRIP001 ScDBDocFunc aFunc(*this);
/*N*/ }
diff --git a/binfilter/bf_sc/source/ui/docshell/sc_docsh6.cxx b/binfilter/bf_sc/source/ui/docshell/sc_docsh6.cxx
index 1e7999b..9e3be8f 100644
--- a/binfilter/bf_sc/source/ui/docshell/sc_docsh6.cxx
+++ b/binfilter/bf_sc/source/ui/docshell/sc_docsh6.cxx
@@ -227,7 +227,7 @@ namespace binfilter {
/*N*/ SfxStyleSheetBase* pSourceStyle = aIter.First();
/*N*/ while (pSourceStyle)
/*N*/ {
-/*N*/ String aName = pSourceStyle->GetName();
+/*N*/ String aLclName = pSourceStyle->GetName();
/*N*/ SfxStyleSheetBase* pDestStyle = pDestPool->Find( pSourceStyle->GetName(), pSourceStyle->GetFamily() );
/*N*/ if ( pDestStyle )
/*N*/ {
@@ -242,7 +242,7 @@ namespace binfilter {
/*N*/ else
/*N*/ {
/*N*/ pStyles[nFound].pSource = pSourceStyle;
-/*N*/ pStyles[nFound].pDest = &pDestPool->Make( aName, pSourceStyle->GetFamily(), pSourceStyle->GetMask() );
+/*N*/ pStyles[nFound].pDest = &pDestPool->Make( aLclName, pSourceStyle->GetFamily(), pSourceStyle->GetMask() );
/*N*/ ++nFound;
/*N*/ }
/*N*/
@@ -296,14 +296,14 @@ namespace binfilter {
/*N*/ for (i=0; i<nCount; i++)
/*N*/ if (aDocument.IsLinked(i))
/*N*/ {
-/*N*/ String aDocName = aDocument.GetLinkDoc(i);
+/*N*/ String aLclDocName = aDocument.GetLinkDoc(i);
/*N*/ String aFltName = aDocument.GetLinkFlt(i);
/*N*/ String aOptions = aDocument.GetLinkOpt(i);
/*N*/ ULONG nRefresh = aDocument.GetLinkRefreshDelay(i);
/*N*/ BOOL bThere = FALSE;
/*N*/ for (USHORT j=0; j<i && !bThere; j++) // im Dokument mehrfach?
/*N*/ if (aDocument.IsLinked(j)
-/*N*/ && aDocument.GetLinkDoc(j) == aDocName
+/*N*/ && aDocument.GetLinkDoc(j) == aLclDocName
/*N*/ && aDocument.GetLinkFlt(j) == aFltName
/*N*/ && aDocument.GetLinkOpt(j) == aOptions)
/*N*/ // Ignore refresh delay in compare, it should be the
@@ -313,7 +313,7 @@ namespace binfilter {
/*N*/
/*N*/ if (!bThere) // schon als Filter eingetragen?
/*N*/ {
-/*N*/ StrData* pData = new StrData(aDocName);
+/*N*/ StrData* pData = new StrData(aLclDocName);
/*N*/ if (!aNames.Insert(pData))
/*N*/ {
/*?*/ delete pData;
@@ -322,9 +322,9 @@ namespace binfilter {
/*N*/ }
/*N*/ if (!bThere)
/*N*/ {
-/*N*/ ScTableLink* pLink = new ScTableLink( this, aDocName, aFltName, aOptions, nRefresh );
+/*N*/ ScTableLink* pLink = new ScTableLink( this, aLclDocName, aFltName, aOptions, nRefresh );
/*N*/ pLink->SetInCreate( TRUE );
-/*N*/ pLinkManager->InsertFileLink( *pLink, OBJECT_CLIENT_FILE, aDocName, &aFltName );
+/*N*/ pLinkManager->InsertFileLink( *pLink, OBJECT_CLIENT_FILE, aLclDocName, &aFltName );
/*N*/ pLink->Update();
/*N*/ pLink->SetInCreate( FALSE );
/*N*/ }
diff --git a/binfilter/bf_sc/source/ui/docshell/sc_impex.cxx b/binfilter/bf_sc/source/ui/docshell/sc_impex.cxx
index d93f58e..1541960 100644
--- a/binfilter/bf_sc/source/ui/docshell/sc_impex.cxx
+++ b/binfilter/bf_sc/source/ui/docshell/sc_impex.cxx
@@ -69,9 +69,9 @@ namespace binfilter {
/*N*/ ScImportExport::ScImportExport( ScDocument* p )
-/*N*/ : pDoc( p ), pDocSh( PTR_CAST(ScDocShell,p->GetDocumentShell()) ),
-/*N*/ nSizeLimit( 0 ), bSingle( TRUE ), bAll( TRUE ), bUndo( FALSE ),
-/*N*/ cSep( '\t' ), cStr( '"' ), bFormulas( FALSE ), bIncludeFiltered( TRUE ),
+/*N*/ : pDocSh( PTR_CAST(ScDocShell,p->GetDocumentShell()) ), pDoc( p ),
+/*N*/ nSizeLimit( 0 ), cSep( '\t' ), cStr( '"' ), bFormulas( FALSE ),
+/*N*/ bIncludeFiltered( TRUE ), bAll( TRUE ), bSingle( TRUE ), bUndo( FALSE ),
/*N*/ bOverflow( FALSE )
/*N*/ {
/*N*/ pUndoDoc = NULL;
@@ -341,11 +341,11 @@ enum DoubledQuoteMode
/*M*/ static const String aSeptCorrect( RTL_CONSTASCII_USTRINGPARAM( "SEPT" ) );
/*M*/ static const String aSepShortened( RTL_CONSTASCII_USTRINGPARAM( "SEP" ) );
/*M*/ uno::Sequence< i18n::CalendarItem > xMonths;
-/*M*/ sal_Int32 i, nLen;
+/*M*/ sal_Int32 i, nLclLen;
/*M*/ // first test all month names from local international
/*M*/ xMonths = rCalendar.getMonths();
-/*M*/ nLen = xMonths.getLength();
-/*M*/ for (i=0; i<nLen && !nMonth; i++)
+/*M*/ nLclLen = xMonths.getLength();
+/*M*/ for (i=0; i<nLclLen && !nMonth; i++)
/*M*/ {
/*M*/ if ( rTransliteration.isEqual( aMStr, xMonths[i].FullName ) ||
/*M*/ rTransliteration.isEqual( aMStr, xMonths[i].AbbrevName ) )
@@ -359,11 +359,11 @@ enum DoubledQuoteMode
/*M*/ }
/*M*/ }
/*M*/ // if none found, then test english month names
-/*M*/ if ( !nMonth && pSecondCalendar && pSecondTransliteration )
+/*M*/ if ( !nMonth && pSecondCalendar && pSecondTransliteration )
/*M*/ {
/*M*/ xMonths = pSecondCalendar->getMonths();
-/*M*/ nLen = xMonths.getLength();
-/*M*/ for (i=0; i<nLen && !nMonth; i++)
+/*M*/ nLclLen = xMonths.getLength();
+/*M*/ for (i=0; i<nLclLen && !nMonth; i++)
/*M*/ {
/*M*/ if ( pSecondTransliteration->isEqual( aMStr, xMonths[i].FullName ) ||
/*M*/ pSecondTransliteration->isEqual( aMStr, xMonths[i].AbbrevName ) )
diff --git a/binfilter/bf_sc/source/ui/docshell/sc_pntlock.cxx b/binfilter/bf_sc/source/ui/docshell/sc_pntlock.cxx
index a0badf7..cbb72b8 100644
--- a/binfilter/bf_sc/source/ui/docshell/sc_pntlock.cxx
+++ b/binfilter/bf_sc/source/ui/docshell/sc_pntlock.cxx
@@ -37,9 +37,9 @@ namespace binfilter {
/*N*/ ScPaintLockData::ScPaintLockData(USHORT nNewMode) :
/*N*/ nMode( nNewMode ),
-/*N*/ nParts( 0 ),
/*N*/ nLevel( 0 ),
/*N*/ nDocLevel( 0 ),
+/*N*/ nParts( 0 ),
/*N*/ bModified( FALSE )
/*N*/ {
/*N*/ }
diff --git a/binfilter/bf_sc/source/ui/docshell/sc_tablink.cxx b/binfilter/bf_sc/source/ui/docshell/sc_tablink.cxx
index 42f5816..6d38385 100644
--- a/binfilter/bf_sc/source/ui/docshell/sc_tablink.cxx
+++ b/binfilter/bf_sc/source/ui/docshell/sc_tablink.cxx
@@ -271,7 +271,7 @@ namespace binfilter {
/*N*/ }
-/*N*/ IMPL_LINK( ScTableLink, RefreshHdl, ScTableLink*, pCaller )
+/*N*/ IMPL_LINK( ScTableLink, RefreshHdl, ScTableLink*, EMPTYARG )
/*N*/ {
/*N*/ long nRes = Refresh( aFileName, aFilterName, NULL, GetRefreshDelay() ) != 0;
/*N*/ return nRes;
diff --git a/binfilter/bf_sc/source/ui/inc/autostyl.hxx b/binfilter/bf_sc/source/ui/inc/autostyl.hxx
index a42c2fb..c597204 100644
--- a/binfilter/bf_sc/source/ui/inc/autostyl.hxx
+++ b/binfilter/bf_sc/source/ui/inc/autostyl.hxx
@@ -38,7 +38,7 @@ class ScAutoStyleList
{
public:
- ScAutoStyleList(ScDocShell* pShell){DBG_BF_ASSERT(0, "STRIP");} //STRIP001 ScAutoStyleList(ScDocShell* pShell);
+ ScAutoStyleList(ScDocShell* /*pShell*/){DBG_BF_ASSERT(0, "STRIP");}
};
diff --git a/binfilter/bf_sc/source/ui/inc/viewdata.hxx b/binfilter/bf_sc/source/ui/inc/viewdata.hxx
index af204e1..90732a9 100644
--- a/binfilter/bf_sc/source/ui/inc/viewdata.hxx
+++ b/binfilter/bf_sc/source/ui/inc/viewdata.hxx
@@ -239,7 +239,7 @@ public:
double GetPPTX() const { return nPPTX; }
double GetPPTY() const { return nPPTY; }
- void GetMultiArea( ScRangeListRef& rRange ){DBG_BF_ASSERT(0, "STRIP");} //STRIP001 void GetMultiArea( ScRangeListRef& rRange );
+ void GetMultiArea( ScRangeListRef& /*rRange*/ ){DBG_BF_ASSERT(0, "STRIP");}
BOOL IsAnyFillMode() { return nFillMode != SC_FILL_NONE; }
diff --git a/binfilter/inc/bf_sc/hints.hxx b/binfilter/inc/bf_sc/hints.hxx
index 47aba05..b8f0ee3 100644
--- a/binfilter/inc/bf_sc/hints.hxx
+++ b/binfilter/inc/bf_sc/hints.hxx
@@ -143,9 +143,8 @@ class ScAutoStyleHint : public SfxHint
{
public:
TYPEINFO();
- ScAutoStyleHint( const ScRange& rR, const String& rSt1,
- ULONG nT, const String& rSt2 ){DBG_BF_ASSERT(0, "STRIP");} //STRIP001 ULONG nT, const String& rSt2 );
-
+ ScAutoStyleHint( const ScRange& /*rR*/, const String& /*rSt1*/,
+ ULONG /*nT*/, const String& /*rSt2*/ ){DBG_BF_ASSERT(0, "STRIP");}
};
diff --git a/binfilter/inc/bf_svx/dataaccessdescriptor.hxx b/binfilter/inc/bf_svx/dataaccessdescriptor.hxx
index 5745ca0..4b3704c 100644
--- a/binfilter/inc/bf_svx/dataaccessdescriptor.hxx
+++ b/binfilter/inc/bf_svx/dataaccessdescriptor.hxx
@@ -69,19 +69,19 @@ namespace svx
class ODataAccessDescriptor
{
public:
- ODataAccessDescriptor(){DBG_BF_ASSERT(0, "STRIP"); }//STRIP001 ;
- ODataAccessDescriptor( const ODataAccessDescriptor& _rSource ){DBG_BF_ASSERT(0, "STRIP");} //STRIP001 ;
- ODataAccessDescriptor( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& _rValues ){DBG_BF_ASSERT(0, "STRIP");} //STRIP001 ;
- ODataAccessDescriptor( const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& _rValues ){DBG_BF_ASSERT(0, "STRIP"); }//STRIP001 ;
+ ODataAccessDescriptor(){DBG_BF_ASSERT(0, "STRIP"); }
+ ODataAccessDescriptor( const ODataAccessDescriptor& /*_rSource*/ ){DBG_BF_ASSERT(0, "STRIP");}
+ ODataAccessDescriptor( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& /*_rValues*/ ){DBG_BF_ASSERT(0, "STRIP");}
+ ODataAccessDescriptor( const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& /*_rValues*/ ){DBG_BF_ASSERT(0, "STRIP"); }
// allows to construct a descriptor from an Any containing either an XPropertySet or a property value sequence
- ODataAccessDescriptor( const ::com::sun::star::uno::Any& _rValues ){DBG_BF_ASSERT(0, "STRIP"); }//STRIP001 ;
+ ODataAccessDescriptor( const ::com::sun::star::uno::Any& /*_rValues*/ ){DBG_BF_ASSERT(0, "STRIP"); }
~ODataAccessDescriptor(){DBG_BF_ASSERT(0, "STRIP");} //STRIP001
::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >
createPropertyValueSequence(){DBG_BF_ASSERT(0, "STRIP");return ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >();} //STRIP001 ;
- ::com::sun::star::uno::Any& operator [] ( DataAccessDescriptorProperty _eWhich ){DBG_BF_ASSERT(0, "STRIP"); static ::com::sun::star::uno::Any aDummy; return aDummy;}//STRIP001 ;
+ ::com::sun::star::uno::Any& operator [] ( DataAccessDescriptorProperty /*_eWhich*/ ){DBG_BF_ASSERT(0, "STRIP"); static ::com::sun::star::uno::Any aDummy; return aDummy;}
};
//........................................................................
More information about the Libreoffice-commits
mailing list