diff options
author | Joseph Powers <jpowers27@cox.net> | 2011-06-21 07:29:15 -0700 |
---|---|---|
committer | Joseph Powers <jpowers27@cox.net> | 2011-06-21 07:29:15 -0700 |
commit | a8a1afac4d1b476562ec60ef244ef15d6258dde0 (patch) | |
tree | 56a898fa11851d1662538e23203c859dc81247a8 /svx/source | |
parent | 6b0f98c64c73e26d789f968938d93ed02fee169f (diff) |
Remove nDummy parameter from XPropertyList::Remove()
Diffstat (limited to 'svx/source')
-rw-r--r-- | svx/source/unodraw/XPropertyTable.cxx | 2 | ||||
-rw-r--r-- | svx/source/xoutdev/xtabbtmp.cxx | 2 | ||||
-rw-r--r-- | svx/source/xoutdev/xtabcolr.cxx | 2 | ||||
-rw-r--r-- | svx/source/xoutdev/xtabdash.cxx | 2 | ||||
-rw-r--r-- | svx/source/xoutdev/xtabgrdt.cxx | 2 | ||||
-rw-r--r-- | svx/source/xoutdev/xtabhtch.cxx | 2 | ||||
-rw-r--r-- | svx/source/xoutdev/xtable.cxx | 2 | ||||
-rw-r--r-- | svx/source/xoutdev/xtablend.cxx | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/svx/source/unodraw/XPropertyTable.cxx b/svx/source/unodraw/XPropertyTable.cxx index 926bc15346eb..7fbe55de5c78 100644 --- a/svx/source/unodraw/XPropertyTable.cxx +++ b/svx/source/unodraw/XPropertyTable.cxx @@ -171,7 +171,7 @@ void SAL_CALL SvxUnoXPropertyTable::removeByName( const OUString& Name ) if( pEntry && pEntry->GetName() == aInternalName ) { if( mpList ) - delete mpList->Remove( i, 0 ); + delete mpList->Remove( i ); else delete mpTable->Remove( i ); return; diff --git a/svx/source/xoutdev/xtabbtmp.cxx b/svx/source/xoutdev/xtabbtmp.cxx index cb1eb690c182..79a499d5f139 100644 --- a/svx/source/xoutdev/xtabbtmp.cxx +++ b/svx/source/xoutdev/xtabbtmp.cxx @@ -175,7 +175,7 @@ XBitmapEntry* XBitmapList::Replace(XBitmapEntry* pEntry, long nIndex ) XBitmapEntry* XBitmapList::Remove(long nIndex) { - return (XBitmapEntry*) XPropertyList::Remove(nIndex, 0); + return (XBitmapEntry*) XPropertyList::Remove(nIndex); } /************************************************************************/ diff --git a/svx/source/xoutdev/xtabcolr.cxx b/svx/source/xoutdev/xtabcolr.cxx index 4abf17bc6ac9..7f809d7b2989 100644 --- a/svx/source/xoutdev/xtabcolr.cxx +++ b/svx/source/xoutdev/xtabcolr.cxx @@ -493,7 +493,7 @@ XColorEntry* XColorList::Replace(XColorEntry* pEntry, long nIndex ) XColorEntry* XColorList::Remove(long nIndex) { - return (XColorEntry*) XPropertyList::Remove(nIndex, 0); + return (XColorEntry*) XPropertyList::Remove(nIndex); } /************************************************************************/ diff --git a/svx/source/xoutdev/xtabdash.cxx b/svx/source/xoutdev/xtabdash.cxx index 7e0390d9c2cf..f6d76b62062b 100644 --- a/svx/source/xoutdev/xtabdash.cxx +++ b/svx/source/xoutdev/xtabdash.cxx @@ -263,7 +263,7 @@ XDashEntry* XDashList::Replace(XDashEntry* pEntry, long nIndex ) XDashEntry* XDashList::Remove(long nIndex) { - return (XDashEntry*) XPropertyList::Remove(nIndex, 0); + return (XDashEntry*) XPropertyList::Remove(nIndex); } XDashEntry* XDashList::GetDash(long nIndex) const diff --git a/svx/source/xoutdev/xtabgrdt.cxx b/svx/source/xoutdev/xtabgrdt.cxx index a326b5c7cc5a..ced902ead484 100644 --- a/svx/source/xoutdev/xtabgrdt.cxx +++ b/svx/source/xoutdev/xtabgrdt.cxx @@ -249,7 +249,7 @@ XGradientEntry* XGradientList::Replace(XGradientEntry* pEntry, long nIndex ) XGradientEntry* XGradientList::Remove(long nIndex) { - return( (XGradientEntry*) XPropertyList::Remove( nIndex, 0 ) ); + return( (XGradientEntry*) XPropertyList::Remove( nIndex ) ); } XGradientEntry* XGradientList::GetGradient(long nIndex) const diff --git a/svx/source/xoutdev/xtabhtch.cxx b/svx/source/xoutdev/xtabhtch.cxx index be0f0e63842a..c7df40e196fd 100644 --- a/svx/source/xoutdev/xtabhtch.cxx +++ b/svx/source/xoutdev/xtabhtch.cxx @@ -257,7 +257,7 @@ XHatchEntry* XHatchList::Replace(XHatchEntry* pEntry, long nIndex ) XHatchEntry* XHatchList::Remove(long nIndex) { - return (XHatchEntry*) XPropertyList::Remove(nIndex, 0); + return (XHatchEntry*) XPropertyList::Remove(nIndex); } XHatchEntry* XHatchList::GetHatch(long nIndex) const diff --git a/svx/source/xoutdev/xtable.cxx b/svx/source/xoutdev/xtable.cxx index 59cafd0eba4a..6279116690e5 100644 --- a/svx/source/xoutdev/xtable.cxx +++ b/svx/source/xoutdev/xtable.cxx @@ -493,7 +493,7 @@ XPropertyEntry* XPropertyList::Replace( XPropertyEntry* pEntry, long nIndex ) |* *************************************************************************/ -XPropertyEntry* XPropertyList::Remove( long nIndex, sal_uInt16 /*nDummy*/) +XPropertyEntry* XPropertyList::Remove( long nIndex ) { if( pBmpList && !bBitmapsDirty ) { diff --git a/svx/source/xoutdev/xtablend.cxx b/svx/source/xoutdev/xtablend.cxx index 80ccbc11a33b..31f2a60ac01a 100644 --- a/svx/source/xoutdev/xtablend.cxx +++ b/svx/source/xoutdev/xtablend.cxx @@ -270,7 +270,7 @@ XLineEndEntry* XLineEndList::Replace(XLineEndEntry* pEntry, long nIndex ) XLineEndEntry* XLineEndList::Remove(long nIndex) { - return (XLineEndEntry*) XPropertyList::Remove(nIndex, 0); + return (XLineEndEntry*) XPropertyList::Remove(nIndex); } XLineEndEntry* XLineEndList::GetLineEnd(long nIndex) const |