summaryrefslogtreecommitdiff
path: root/src/wx/check_box.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-02-01 23:58:04 +0100
committerCarl Hetherington <cth@carlh.net>2021-02-01 23:58:04 +0100
commitb539d468acc3ca73cc58a4434002e511a4995f7d (patch)
tree0b87689706f9248853b62179195fa881d17730b0 /src/wx/check_box.h
parent4a2efeb3c35babad46eebfbb56fa9a0a7c215d3b (diff)
C++11 tidying.
Diffstat (limited to 'src/wx/check_box.h')
-rw-r--r--src/wx/check_box.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/wx/check_box.h b/src/wx/check_box.h
index ff47bc524..8e6789e44 100644
--- a/src/wx/check_box.h
+++ b/src/wx/check_box.h
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2018 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2018-2021 Carl Hetherington <cth@carlh.net>
This file is part of DCP-o-matic.
@@ -18,12 +18,15 @@
*/
+
#ifndef DCPOMATIC_CHECK_BOX_H
#define DCPOMATIC_CHECK_BOX_H
+
#include "i18n_hook.h"
#include <wx/wx.h>
+
class CheckBox : public wxCheckBox, public I18NHook
{
public:
@@ -33,4 +36,5 @@ public:
wxString get_text () const;
};
+
#endif