summaryrefslogtreecommitdiff
path: root/src/listeners/weightlistener.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-02-21 01:13:48 +0300
committerAndrei Karas <akaras@inbox.ru>2016-02-21 01:13:48 +0300
commit6c01b391c288622d8e360d823c9c1e35a874fa58 (patch)
tree68dc29cbdfd55770a625aaf16939f243a7289d57 /src/listeners/weightlistener.h
parent414b9fbcd9bf6f49ba98d84babfac143aa9e6532 (diff)
downloadplus-6c01b391c288622d8e360d823c9c1e35a874fa58.tar.gz
plus-6c01b391c288622d8e360d823c9c1e35a874fa58.tar.bz2
plus-6c01b391c288622d8e360d823c9c1e35a874fa58.tar.xz
plus-6c01b391c288622d8e360d823c9c1e35a874fa58.zip
Add missing public modifier to some structs.
Diffstat (limited to 'src/listeners/weightlistener.h')
-rw-r--r--src/listeners/weightlistener.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/listeners/weightlistener.h b/src/listeners/weightlistener.h
index 46eb86c59..6c2e39335 100644
--- a/src/listeners/weightlistener.h
+++ b/src/listeners/weightlistener.h
@@ -34,10 +34,11 @@ extern OkDialog *weightNotice;
*/
struct WeightListener final : public ActionListener
{
- void action(const ActionEvent &event A_UNUSED) override final
- {
- weightNotice = nullptr;
- }
+ public:
+ void action(const ActionEvent &event A_UNUSED) override final
+ {
+ weightNotice = nullptr;
+ }
};
#endif // LISTENERS_WEIGHTLISTENER_H