diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-25 08:42:22 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-11-25 13:57:29 +0200 |
commit | 1522d4b36aa4a8c6f61788b897c24ddfb065185b (patch) | |
tree | a73772f50a4620c6fdb02a65f16794ba88592cc0 /include/vcl/builder.hxx | |
parent | a0d112a53023758a28d180ffd12766b4d325bf52 (diff) |
loplugin:unusedfields in include/vcl
and fixed bug in sepia filter, where it was using the
wrong member of the union to get the percentage
Change-Id: I56b76496a3ac711adec12dd8c08b28d69644d66f
Diffstat (limited to 'include/vcl/builder.hxx')
-rw-r--r-- | include/vcl/builder.hxx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/include/vcl/builder.hxx b/include/vcl/builder.hxx index 485bbe8375cb..074200abea69 100644 --- a/include/vcl/builder.hxx +++ b/include/vcl/builder.hxx @@ -260,13 +260,9 @@ private: struct SizeGroup { - OString m_sID; std::vector<OString> m_aWidgets; stringmap m_aProperties; - SizeGroup(const OString &rId) - : m_sID(rId) - { - } + SizeGroup() {} }; typedef std::map< VclPtr<vcl::Window>, stringmap> AtkMap; |