diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-05-09 09:55:29 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-05-09 12:28:03 +0200 |
commit | 82d018b402219b5452bb08aac2c060031bbc3298 (patch) | |
tree | a371ee459cf4ccfa722ba6344055fccd86d6f420 /svtools | |
parent | 3a98352f7c03be67f7ceddd7fab48f8ef8a30849 (diff) |
loplugin:unusedfields
Change-Id: I8dc5a6ef84f43bad0bee26592b3a8e95c58e6f22
Reviewed-on: https://gerrit.libreoffice.org/72027
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/control/tabbar.cxx | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/svtools/source/control/tabbar.cxx b/svtools/source/control/tabbar.cxx index b67252c28e1a..74623f18db65 100644 --- a/svtools/source/control/tabbar.cxx +++ b/svtools/source/control/tabbar.cxx @@ -63,7 +63,6 @@ private: Color maSelectedColor; Color maCustomColor; - Color maUnselectedColor; public: bool mbSelected:1; @@ -183,11 +182,6 @@ public: maSelectedColor = rColor; } - void setUnselectedFillColor(const Color& rColor) - { - maUnselectedColor = rColor; - } - void setCustomColor(const Color& rColor) { maCustomColor = rColor; @@ -1143,7 +1137,6 @@ void TabBar::Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle& r TabDrawer aDrawer(rRenderContext); aDrawer.setSelectedFillColor(aSelectColor); - aDrawer.setUnselectedFillColor(aFaceColor); // Now, start drawing the tabs. |