diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-05-03 11:17:34 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-05-03 20:18:04 +0200 |
| commit | 689fa55d1529ad88449ca464e9107c4dcc54d1cb (patch) | |
| tree | edd1264941263f2fa25a98d61f98c87876c5b667 /src/wx/dcp_panel.h | |
| parent | 0aabe4060ea4bad7c7caac633aef0737fccff8c2 (diff) | |
C++11 tidying.
Diffstat (limited to 'src/wx/dcp_panel.h')
| -rw-r--r-- | src/wx/dcp_panel.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/wx/dcp_panel.h b/src/wx/dcp_panel.h index a076e4bb4..dc5e9bcbf 100644 --- a/src/wx/dcp_panel.h +++ b/src/wx/dcp_panel.h @@ -43,6 +43,7 @@ class Film; class FilmViewer; class Ratio; + class DCPPanel { public: @@ -149,10 +150,10 @@ private: wxButton* _metadata; wxSizer* _audio_panel_sizer; - AudioDialog* _audio_dialog; - MarkersDialog* _markers_dialog; - InteropMetadataDialog* _interop_metadata_dialog; - SMPTEMetadataDialog* _smpte_metadata_dialog; + AudioDialog* _audio_dialog = nullptr; + MarkersDialog* _markers_dialog = nullptr; + InteropMetadataDialog* _interop_metadata_dialog = nullptr; + SMPTEMetadataDialog* _smpte_metadata_dialog = nullptr; std::shared_ptr<Film> _film; std::weak_ptr<FilmViewer> _viewer; |
