diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-04-26 12:09:47 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-04-26 12:09:47 +0200 |
| commit | 8fcadb1b9b2afc4994e03377105b92cae4eb54a1 (patch) | |
| tree | bcc2533ab221780f6ef358e290006131bd1a6c58 /src | |
| parent | 74e944d9ba137386efff089f9906e64d255836c9 (diff) | |
Splash behaviour does not need to be branded after all.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/variant.cc | 7 | ||||
| -rw-r--r-- | src/lib/variant.h | 1 | ||||
| -rw-r--r-- | src/wx/wx_util.cc | 4 |
3 files changed, 0 insertions, 12 deletions
diff --git a/src/lib/variant.cc b/src/lib/variant.cc index 829a7d6e6..f1c2af17b 100644 --- a/src/lib/variant.cc +++ b/src/lib/variant.cc @@ -38,7 +38,6 @@ static char const* _dcpomatic_batch_converter = "DCP-o-matic Batch Converter"; static char const* _report_problem_email = "carl@dcpomatic.com"; -static bool const _show_splash = true; static bool const _show_tagline = true; static bool const _show_dcpomatic_website = true; @@ -140,12 +139,6 @@ variant::dcpomatic_player_app() } bool -variant::show_splash() -{ - return _show_splash; -} - -bool variant::show_tagline() { return _show_tagline; diff --git a/src/lib/variant.h b/src/lib/variant.h index 9bcbb234e..87fbaa84d 100644 --- a/src/lib/variant.h +++ b/src/lib/variant.h @@ -46,7 +46,6 @@ std::string dcpomatic_player_app(); std::string report_problem_email(); -bool show_splash(); bool show_tagline(); bool show_dcpomatic_website(); diff --git a/src/wx/wx_util.cc b/src/wx/wx_util.cc index 9a8d90162..7d8fb0a76 100644 --- a/src/wx/wx_util.cc +++ b/src/wx/wx_util.cc @@ -604,10 +604,6 @@ setup_audio_channels_choice (wxChoice* choice, int minimum) wxSplashScreen* maybe_show_splash () { - if (!variant::show_splash()) { - return nullptr; - } - wxSplashScreen* splash = nullptr; try { |
