diff options
author | Joseph Powers <jpowers27@cox.net> | 2011-08-29 06:29:06 -0700 |
---|---|---|
committer | Joseph Powers <jpowers27@cox.net> | 2011-08-29 06:29:36 -0700 |
commit | bbbc20bd5f4ca5ff726667869b7b7537606b2a77 (patch) | |
tree | 05014a5c013e955f86e90de2c81ddc05cf77e5a8 /svx/source/items/drawitem.cxx | |
parent | 7d7f4769b0375f64f43fe7fbc6a1129f53bbdf51 (diff) |
Rename class XColorTable to XColorList
The class is now based on XPropertyList instead of XPropertyTable and all
of the other classed based on XPropertyList are named X..List.
Diffstat (limited to 'svx/source/items/drawitem.cxx')
-rw-r--r-- | svx/source/items/drawitem.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/items/drawitem.cxx b/svx/source/items/drawitem.cxx index 50b2b9561621..09852a13fd3f 100644 --- a/svx/source/items/drawitem.cxx +++ b/svx/source/items/drawitem.cxx @@ -60,7 +60,7 @@ SvxColorTableItem::SvxColorTableItem() // ----------------------------------------------------------------------- -SvxColorTableItem::SvxColorTableItem( XColorTable* pTable, sal_uInt16 nW ) : +SvxColorTableItem::SvxColorTableItem( XColorList* pTable, sal_uInt16 nW ) : SfxPoolItem( nW ), pColorTable( pTable ) { @@ -125,7 +125,7 @@ bool SvxColorTableItem::PutValue( const com::sun::star::uno::Any& rVal, sal_uInt sal_Int64 aValue = 0; if ( rVal >>= aValue ) { - pColorTable = (XColorTable *)(sal_uLong)aValue; + pColorTable = (XColorList*)(sal_uLong)aValue; return true; } |