diff options
Diffstat (limited to 'extensions/source/propctrlr/standardcontrol.cxx')
-rw-r--r-- | extensions/source/propctrlr/standardcontrol.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/source/propctrlr/standardcontrol.cxx b/extensions/source/propctrlr/standardcontrol.cxx index 75b61bda4195..6f5c934bc92c 100644 --- a/extensions/source/propctrlr/standardcontrol.cxx +++ b/extensions/source/propctrlr/standardcontrol.cxx @@ -683,7 +683,7 @@ namespace pcr :OColorControl_Base( PropertyControlType::ColorListBox, pParent, nWinStyle ) { // initialize the color listbox - XColorTable* pColorTable = NULL; + XColorList* pColorTable = NULL; SfxObjectShell* pDocSh = SfxObjectShell::Current(); const SfxPoolItem* pItem = pDocSh ? pDocSh->GetItem( SID_COLOR_TABLE ) : NULL; if ( pItem ) @@ -693,7 +693,7 @@ namespace pcr } if ( !pColorTable ) - pColorTable = &XColorTable::GetStdColorTable(); + pColorTable = &XColorList::GetStdColorTable(); DBG_ASSERT(pColorTable, "OColorControl::OColorControl: no color table!"); |