diff options
author | Joseph Powers <jpowers27@cox.net> | 2011-06-19 21:27:48 -0700 |
---|---|---|
committer | Joseph Powers <jpowers27@cox.net> | 2011-06-21 05:11:14 -0700 |
commit | 2c7d121826406279a3558c298caaf4e006046851 (patch) | |
tree | 6dc14a02d75b5469e25741ab97b91d76c1a47e2b /svx/inc | |
parent | 407e9d0b7a31ca69ab3f2940bedc3cc153d2e0e5 (diff) |
Replace List with std::vector< XPropertyEntry* >
Diffstat (limited to 'svx/inc')
-rw-r--r-- | svx/inc/svx/xtable.hxx | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/svx/inc/svx/xtable.hxx b/svx/inc/svx/xtable.hxx index 0f5e57b96d35..14092985f0d7 100644 --- a/svx/inc/svx/xtable.hxx +++ b/svx/inc/svx/xtable.hxx @@ -241,6 +241,7 @@ public: // class XPropertyList // -------------------- +typedef ::std::vector< XPropertyEntry* > XPropertyEntryList_impl; class SVX_DLLPUBLIC XPropertyList { protected: @@ -248,17 +249,17 @@ protected: String aPath; XOutdevItemPool* pXPool; - List aList; + XPropertyEntryList_impl aList; List* pBmpList; sal_Bool bListDirty; sal_Bool bBitmapsDirty; sal_Bool bOwnPool; - XPropertyList( const String& rPath, - XOutdevItemPool* pXPool = NULL, - sal_uInt16 nInitSize = 16, - sal_uInt16 nReSize = 16 ); + XPropertyList( + const String& rPath, + XOutdevItemPool* pXPool = NULL + ); XPropertyList( SvStream& rIn ); void Clear(); |