summaryrefslogtreecommitdiff
path: root/basctl
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 /basctl
parentb23867abd8427da361dfa5edb9b41fbbd064ae10 (diff)
SvTreeListBox::ExpandingHdl should return bool
Change-Id: I39a854910299ab2e7c64beabda381bb9f0bd2891
Diffstat (limited to 'basctl')
-rw-r--r--basctl/source/basicide/bastype2.cxx2
-rw-r--r--basctl/source/basicide/bastype2.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/basctl/source/basicide/bastype2.cxx b/basctl/source/basicide/bastype2.cxx
index b353853f54fe..c89944740de3 100644
--- a/basctl/source/basicide/bastype2.cxx
+++ b/basctl/source/basicide/bastype2.cxx
@@ -700,7 +700,7 @@ SvTreeListEntry* TreeListBox::FindEntry( SvTreeListEntry* pParent, const OUStrin
return 0;
}
-long TreeListBox::ExpandingHdl()
+bool TreeListBox::ExpandingHdl()
{
// expanding or collapsing?
bool bOK = true;
diff --git a/basctl/source/basicide/bastype2.hxx b/basctl/source/basicide/bastype2.hxx
index 90cc273e40dc..bc7d669e713e 100644
--- a/basctl/source/basicide/bastype2.hxx
+++ b/basctl/source/basicide/bastype2.hxx
@@ -185,7 +185,7 @@ protected:
virtual void RequestingChildren( SvTreeListEntry* pParent );
virtual void ExpandedHdl();
virtual SvTreeListEntry* CloneEntry( SvTreeListEntry* pSource );
- virtual long ExpandingHdl();
+ virtual bool ExpandingHdl();
void ImpCreateLibEntries( SvTreeListEntry* pShellRootEntry, const ScriptDocument& rDocument, LibraryLocation eLocation );
void ImpCreateLibSubEntries( SvTreeListEntry* pLibRootEntry, const ScriptDocument& rDocument, const OUString& rLibName );