diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-03-26 17:21:33 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-03-27 10:01:29 +0100 |
commit | 9b784a74a2f09e9eb9a0fd41d58c1f6b47ee6ee6 (patch) | |
tree | 9debd4cb16ca9aaece751a88bd09a63b01ccc00c /vcl/inc/iconview.hxx | |
parent | 52a06aeb4d8b58245fa0363fe22c7f255bcfc310 (diff) |
these methods can take a const argument
Change-Id: I0ec68d40dcc34075c72c0d60d3a4b6e8262a8e0f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91152
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/inc/iconview.hxx')
-rw-r--r-- | vcl/inc/iconview.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/inc/iconview.hxx b/vcl/inc/iconview.hxx index ebc60f08aa23..09d1a0b02fe7 100644 --- a/vcl/inc/iconview.hxx +++ b/vcl/inc/iconview.hxx @@ -29,7 +29,7 @@ public: virtual void Resize() override; - virtual tools::Rectangle GetFocusRect( SvTreeListEntry*, long nEntryPos ) override; + virtual tools::Rectangle GetFocusRect(const SvTreeListEntry*, long nEntryPos) override; void PaintEntry( SvTreeListEntry&, long nX, long nY, vcl::RenderContext& rRenderContext); }; |