diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/dcpomatic_choice.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/wx/dcpomatic_choice.h b/src/wx/dcpomatic_choice.h index 3a5987ead..7c9042de9 100644 --- a/src/wx/dcpomatic_choice.h +++ b/src/wx/dcpomatic_choice.h @@ -23,6 +23,7 @@ LIBDCP_DISABLE_WARNINGS #include <wx/wx.h> LIBDCP_ENABLE_WARNINGS +#include <boost/bind.hpp> #include <boost/optional.hpp> @@ -37,6 +38,11 @@ public: void set(int index); boost::optional<int> get() const; + template <typename... Args> + void bind(Args... args) { + Bind(wxEVT_CHOICE, boost::bind(std::forward<Args>(args)...)); + } + private: bool _needs_clearing = true; }; |
