summaryrefslogtreecommitdiff
path: root/svx/source/xoutdev/xtablend.cxx
diff options
context:
space:
mode:
authorJoseph Powers <jpowers27@cox.net>2011-06-19 21:27:48 -0700
committerJoseph Powers <jpowers27@cox.net>2011-06-21 05:11:14 -0700
commit2c7d121826406279a3558c298caaf4e006046851 (patch)
tree6dc14a02d75b5469e25741ab97b91d76c1a47e2b /svx/source/xoutdev/xtablend.cxx
parent407e9d0b7a31ca69ab3f2940bedc3cc153d2e0e5 (diff)
Replace List with std::vector< XPropertyEntry* >
Diffstat (limited to 'svx/source/xoutdev/xtablend.cxx')
-rw-r--r--svx/source/xoutdev/xtablend.cxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/svx/source/xoutdev/xtablend.cxx b/svx/source/xoutdev/xtablend.cxx
index 89818aaae434..b68b65e20268 100644
--- a/svx/source/xoutdev/xtablend.cxx
+++ b/svx/source/xoutdev/xtablend.cxx
@@ -247,8 +247,12 @@ void XLineEndList::impDestroy()
}
}
-XLineEndList::XLineEndList(const String& rPath, XOutdevItemPool* _pXPool, sal_uInt16 nInitSize, sal_uInt16 nReSize)
-: XPropertyList(rPath, _pXPool, nInitSize, nReSize),
+XLineEndList::XLineEndList(
+ const String& rPath,
+ XOutdevItemPool* _pXPool,
+ sal_uInt16 nInitSize,
+ sal_uInt16 nReSize
+) : XPropertyList( rPath, _pXPool ),
mpData(0)
{
pBmpList = new List(nInitSize, nReSize);