summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-11-14 21:14:23 +0000
committerCaolán McNamara <caolanm@redhat.com>2012-11-17 20:10:50 +0000
commit3b238706737c36d4772ec3f95b52fbde978bf20a (patch)
tree592679f982c113a495bdf81f5f4787cc99688fc8 /svtools
parentf44928cbd51fc7d08e2b81dcdf837650cd215847 (diff)
callcatcher: remove another layer of binfilter-released methods
Change-Id: Id5bedd660b2ada460ffc48ce28d4f8ab9cd89226
Diffstat (limited to 'svtools')
-rw-r--r--svtools/inc/svtools/treelistentry.hxx3
-rw-r--r--svtools/source/contnr/treelistentry.cxx10
2 files changed, 0 insertions, 13 deletions
diff --git a/svtools/inc/svtools/treelistentry.hxx b/svtools/inc/svtools/treelistentry.hxx
index b3df912149bf..50734ab044d4 100644
--- a/svtools/inc/svtools/treelistentry.hxx
+++ b/svtools/inc/svtools/treelistentry.hxx
@@ -81,9 +81,6 @@ public:
bool HasChildListPos() const;
sal_uLong GetChildListPos() const;
- SvTreeListEntries& GetChildEntries();
- const SvTreeListEntries& GetChildEntries() const;
-
void Clone(SvTreeListEntry* pSource);
size_t ItemCount() const;
diff --git a/svtools/source/contnr/treelistentry.cxx b/svtools/source/contnr/treelistentry.cxx
index c34b53c680b2..f375b5908740 100644
--- a/svtools/source/contnr/treelistentry.cxx
+++ b/svtools/source/contnr/treelistentry.cxx
@@ -106,16 +106,6 @@ sal_uLong SvTreeListEntry::GetChildListPos() const
return ( nListPos & 0x7fffffff );
}
-SvTreeListEntries& SvTreeListEntry::GetChildEntries()
-{
- return maChildren;
-}
-
-const SvTreeListEntries& SvTreeListEntry::GetChildEntries() const
-{
- return maChildren;
-}
-
void SvTreeListEntry::Clone(SvTreeListEntry* pSource)
{
nListPos &= 0x80000000;