diff options
author | Caolán McNamara <caolanm@redhat.com> | 2022-05-12 10:08:05 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2022-05-12 12:25:36 +0200 |
commit | 70034096f20ab545e52e683e3a97b4b8f41ec4a8 (patch) | |
tree | 705a40400e755930bf5cf3266e24dc4af1b884a4 | |
parent | f6d2f218ad0dd1f3817411c4eb42dffc5bea9bf5 (diff) |
these members can be private
Change-Id: Icab045ac04f3e556672191b8df454f8f29ecc6d5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134221
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | bin/find-can-be-private-symbols.functions.results | 2 | ||||
-rw-r--r-- | include/vcl/toolkit/treelistbox.hxx | 8 |
2 files changed, 4 insertions, 6 deletions
diff --git a/bin/find-can-be-private-symbols.functions.results b/bin/find-can-be-private-symbols.functions.results index 82e5f0c55912..477c1971f137 100644 --- a/bin/find-can-be-private-symbols.functions.results +++ b/bin/find-can-be-private-symbols.functions.results @@ -9559,7 +9559,6 @@ SvTreeListBox::SelectChildren(SvTreeListEntry*, bool) SvTreeListBox::SelectHdl() SvTreeListBox::SetAlternatingRowColors(bool) SvTreeListBox::SetCheckButtonData(SvLBoxButtonData*) -SvTreeListBox::SetCollapsedNodeBmp(Image const&) SvTreeListBox::SetCurEntry(SvTreeListEntry*) SvTreeListBox::SetDefaultCollapsedEntryBmp(Image const&) SvTreeListBox::SetDefaultExpandedEntryBmp(Image const&) @@ -9567,7 +9566,6 @@ SvTreeListBox::SetDragDropMode(DragDropMode) SvTreeListBox::SetDragHelper(rtl::Reference<TransferDataContainer> const&, unsigned char) SvTreeListBox::SetEntryText(SvTreeListEntry*, rtl::OUString const&) SvTreeListBox::SetEntryWidth(short) -SvTreeListBox::SetExpandedNodeBmp(Image const&) SvTreeListBox::SetFont(vcl::Font const&) SvTreeListBox::SetForceMakeVisible(bool) SvTreeListBox::SetHighlightRange(unsigned short, unsigned short) diff --git a/include/vcl/toolkit/treelistbox.hxx b/include/vcl/toolkit/treelistbox.hxx index d5633df7049e..685540b2d858 100644 --- a/include/vcl/toolkit/treelistbox.hxx +++ b/include/vcl/toolkit/treelistbox.hxx @@ -470,6 +470,10 @@ public: virtual bool set_property(const OString &rKey, const OUString &rValue) override; + VCL_DLLPRIVATE void SetCollapsedNodeBmp( const Image& ); + VCL_DLLPRIVATE void SetExpandedNodeBmp( const Image& ); + VCL_DLLPRIVATE Image const & GetExpandedNodeBmp( ) const; + protected: VCL_DLLPRIVATE void SetEntryHeight( SvTreeListEntry const * pEntry ); @@ -611,10 +615,6 @@ public: void MakeVisible( SvTreeListEntry* pEntry ); void MakeVisible( SvTreeListEntry* pEntry, bool bMoveToTop ); - void SetCollapsedNodeBmp( const Image& ); - void SetExpandedNodeBmp( const Image& ); - Image const & GetExpandedNodeBmp( ) const; - void SetFont( const vcl::Font& rFont ); SvTreeListEntry* GetEntry( const Point& rPos, bool bHit = false ) const; |