summaryrefslogtreecommitdiff
path: root/sd/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-10-11 20:00:51 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-10-11 20:01:31 +0100
commit9b6b916ef39619f681f714397a0e3f85f442833d (patch)
tree2c572d1d5e13ab602ccf81d071bd8c0ef7241f9f /sd/source
parentb44f8cdedee6ec56769188917cd2b4300ac34a9a (diff)
Resolves: fdo#70229 restore ResID logic to ui ctor
Change-Id: Ib4df8fc317e6fd21531a9dbd898cbdeef0783452
Diffstat (limited to 'sd/source')
-rw-r--r--sd/source/ui/animations/CustomAnimationList.cxx7
1 files changed, 6 insertions, 1 deletions
diff --git a/sd/source/ui/animations/CustomAnimationList.cxx b/sd/source/ui/animations/CustomAnimationList.cxx
index c464b790bc80..ec76175c1188 100644
--- a/sd/source/ui/animations/CustomAnimationList.cxx
+++ b/sd/source/ui/animations/CustomAnimationList.cxx
@@ -455,12 +455,17 @@ void CustomAnimationTriggerEntryItem::Clone( SvLBoxItem* )
// ====================================================================
CustomAnimationList::CustomAnimationList( ::Window* pParent )
- : SvTreeListBox( pParent, WB_TABSTOP | WB_BORDER )
+ : SvTreeListBox( pParent, WB_TABSTOP | WB_BORDER | WB_HASLINES | WB_HASBUTTONS | WB_HASBUTTONSATROOT )
, mbIgnorePaint(false)
, mpController(0)
, mnLastGroupId(0)
, mpLastParentEntry(0)
{
+
+ EnableContextMenuHandling();
+ SetSelectionMode( MULTIPLE_SELECTION );
+ SetIndent(16);
+ SetNodeDefaultImages();
}
extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeCustomAnimationList( ::Window *pParent )