diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-13 18:07:49 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-13 18:08:07 +0100 |
commit | 01f3186c4b8357e7a3784e0249aaee1af381f609 (patch) | |
tree | f42a01743b66e3b81eaec17b6e41115d99c0900d /sfx2 | |
parent | b23867abd8427da361dfa5edb9b41fbbd064ae10 (diff) |
SvTreeListBox::ExpandingHdl should return bool
Change-Id: I39a854910299ab2e7c64beabda381bb9f0bd2891
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/dialog/templdlg.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/source/dialog/templdlg.cxx b/sfx2/source/dialog/templdlg.cxx index ecc4d4192d1e..067eae9919e5 100644 --- a/sfx2/source/dialog/templdlg.cxx +++ b/sfx2/source/dialog/templdlg.cxx @@ -526,7 +526,7 @@ protected: virtual void Command( const CommandEvent& rMEvt ); virtual long Notify( NotifyEvent& rNEvt ); virtual sal_Bool DoubleClickHdl(); - virtual long ExpandingHdl(); + virtual bool ExpandingHdl(); virtual void ExpandedHdl(); virtual sal_Bool NotifyMoving(SvTreeListEntry* pTarget, SvTreeListEntry* pEntry, @@ -644,7 +644,7 @@ sal_Bool StyleTreeListBox_Impl::NotifyMoving(SvTreeListEntry* pTarget, //------------------------------------------------------------------------- -long StyleTreeListBox_Impl::ExpandingHdl() +bool StyleTreeListBox_Impl::ExpandingHdl() /* [Description] @@ -656,7 +656,7 @@ long StyleTreeListBox_Impl::ExpandingHdl() */ { pCurEntry = GetCurEntry(); - return sal_True; + return true; } //------------------------------------------------------------------------- |