summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-13 18:07:49 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-13 18:08:07 +0100
commit01f3186c4b8357e7a3784e0249aaee1af381f609 (patch)
treef42a01743b66e3b81eaec17b6e41115d99c0900d /sfx2
parentb23867abd8427da361dfa5edb9b41fbbd064ae10 (diff)
SvTreeListBox::ExpandingHdl should return bool
Change-Id: I39a854910299ab2e7c64beabda381bb9f0bd2891
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/dialog/templdlg.cxx6
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;
}
//-------------------------------------------------------------------------