summaryrefslogtreecommitdiff
path: root/svx/source/xoutdev/xtablend.cxx
diff options
context:
space:
mode:
authorJoseph Powers <jpowers27@cox.net>2011-06-22 21:01:25 -0700
committerJoseph Powers <jpowers27@cox.net>2011-06-22 21:01:25 -0700
commitc3e86dd587a3c60cb5829f4f8b318c00119ed331 (patch)
treee6f8b6943def03d056764c8a88f76ba928c46d2e /svx/source/xoutdev/xtablend.cxx
parentd3c77f63b4823f7a4d68043de50a62dfd5ed5e1f (diff)
Cleanup up some unused parameters
The xxxList classes no longer need nInitSize & nReSize. THe xxxTable ones still do; however, this could be fixed by a future Table cleanup project.
Diffstat (limited to 'svx/source/xoutdev/xtablend.cxx')
-rw-r--r--svx/source/xoutdev/xtablend.cxx20
1 files changed, 11 insertions, 9 deletions
diff --git a/svx/source/xoutdev/xtablend.cxx b/svx/source/xoutdev/xtablend.cxx
index cfffda9b82cd..dab030cc88bf 100644
--- a/svx/source/xoutdev/xtablend.cxx
+++ b/svx/source/xoutdev/xtablend.cxx
@@ -90,10 +90,13 @@ static char const aChckXML[] = { '<', '?', 'x', 'm', 'l' }; // = 6.0
|*
*************************************************************************/
-XLineEndTable::XLineEndTable( const String& rPath,
- XOutdevItemPool* pInPool,
- sal_uInt16 nInitSize, sal_uInt16 nReSize ) :
- XPropertyTable( rPath, pInPool, nInitSize, nReSize)
+XLineEndTable::XLineEndTable(
+ const String& rPath,
+ XOutdevItemPool* pInPool,
+ sal_uInt16 nInitSize,
+ sal_uInt16 nReSize
+)
+ : XPropertyTable( rPath, pInPool, nInitSize, nReSize)
{
pBmpTable = new Table( nInitSize, nReSize );
}
@@ -249,11 +252,10 @@ void XLineEndList::impDestroy()
XLineEndList::XLineEndList(
const String& rPath,
- XOutdevItemPool* _pXPool,
- sal_uInt16 /* nInitSize */,
- sal_uInt16 /* nReSize */
-) : XPropertyList( rPath, _pXPool ),
- mpData(0)
+ XOutdevItemPool* _pXPool
+)
+ : XPropertyList( rPath, _pXPool )
+ , mpData(0)
{
pBmpList = new BitmapList_impl();
}