diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-08-08 15:25:47 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-08-09 00:42:59 +0200 |
| commit | 8cb1cf6a5577fcb75d210006abe334be755973a0 (patch) | |
| tree | e95666a8cb1d1ee9c9c9e55405ca87aa69ff7580 /src | |
| parent | 42e315363f3e03984e7f77d7b73b0a0edd5466be (diff) | |
Cleanup: use nullptr.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/content_panel.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/content_panel.cc b/src/wx/content_panel.cc index 5fa935fac..0e2dbafb2 100644 --- a/src/wx/content_panel.cc +++ b/src/wx/content_panel.cc @@ -527,7 +527,7 @@ ContentPanel::check_selection () _video_panel->create (); } else if (!have_video && _video_panel) { _notebook->DeletePage (off); - _video_panel = 0; + _video_panel = nullptr; } if (have_video) { @@ -540,7 +540,7 @@ ContentPanel::check_selection () _audio_panel->create (); } else if (!have_audio && _audio_panel) { _notebook->DeletePage (off); - _audio_panel = 0; + _audio_panel = nullptr; } if (have_audio) { |
