diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-03-31 17:02:02 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-03-31 20:39:44 +0200 |
| commit | 7a283ed23bb4189046884de0c49853bf3585d94d (patch) | |
| tree | 1942d60ebaa9265d2b03d3e6c0c08fb227127594 /src/wx/audio_mapping_view.h | |
| parent | 6abf30c72b1a97b77c3fb5f3c9b316f4746e88b8 (diff) | |
C++11 tidying.
Diffstat (limited to 'src/wx/audio_mapping_view.h')
| -rw-r--r-- | src/wx/audio_mapping_view.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/wx/audio_mapping_view.h b/src/wx/audio_mapping_view.h index f5626e524..98b666999 100644 --- a/src/wx/audio_mapping_view.h +++ b/src/wx/audio_mapping_view.h @@ -101,10 +101,10 @@ private: AudioMapping _map; - wxMenu* _menu; - wxPanel* _body; - wxScrollBar* _vertical_scroll; - wxScrollBar* _horizontal_scroll; + wxMenu* _menu = nullptr; + wxPanel* _body = nullptr; + wxScrollBar* _vertical_scroll = nullptr; + wxScrollBar* _horizontal_scroll = nullptr; int _menu_input; int _menu_output; @@ -117,5 +117,5 @@ private: std::vector<NamedChannel> _output_channels; std::vector<Group> _input_groups; - boost::optional<std::pair<NamedChannel, NamedChannel> > _last_tooltip_channels; + boost::optional<std::pair<NamedChannel, NamedChannel>> _last_tooltip_channels; }; |
