diff options
author | Ulrich Kitzinger <ulkitz@hotmail.de> | 2014-05-23 09:10:57 +0200 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-23 20:37:32 +0100 |
commit | 6eaad9e41ae95a3d973e72439ef580349e3e8e4b (patch) | |
tree | fc65637da34fdea9a66d9bf7112bc240ab26a83a /include/svtools | |
parent | 4cb41493edd162a83975e7b7604a3bf4ca43a578 (diff) |
Resolves: fdo#58187 Expand and Collapse should be virtual
regression from ac7acb0ab1329913b0cec79790adcde0263960be
Change-Id: I773871f08f43a8abadfc5ef9b641db722deb7d20
Diffstat (limited to 'include/svtools')
-rw-r--r-- | include/svtools/treelistbox.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svtools/treelistbox.hxx b/include/svtools/treelistbox.hxx index 188cfb67f0a6..e756d4aef9db 100644 --- a/include/svtools/treelistbox.hxx +++ b/include/svtools/treelistbox.hxx @@ -732,8 +732,8 @@ public: void SetDragDropMode( DragDropMode ); void SetSelectionMode( SelectionMode ); - bool Expand( SvTreeListEntry* pParent ); - bool Collapse( SvTreeListEntry* pParent ); + virtual bool Expand( SvTreeListEntry* pParent ); + virtual bool Collapse( SvTreeListEntry* pParent ); virtual bool Select( SvTreeListEntry* pEntry, bool bSelect=true ); sal_uLong SelectChildren( SvTreeListEntry* pParent, bool bSelect ); virtual void SelectAll( bool bSelect, bool bPaint = true ) SAL_OVERRIDE; |