diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-04-26 11:53:40 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-04-26 11:53:40 +0200 |
| commit | 74e944d9ba137386efff089f9906e64d255836c9 (patch) | |
| tree | e4b15b1d1164c069b6df036f4f4c0316c665a7e1 /src/lib/variant.cc | |
| parent | 17ef19940f152ceeb2e1ad696dd5e7ac5917d8cd (diff) | |
Allow customisation of error report email address.
Diffstat (limited to 'src/lib/variant.cc')
| -rw-r--r-- | src/lib/variant.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/variant.cc b/src/lib/variant.cc index 4434993b1..829a7d6e6 100644 --- a/src/lib/variant.cc +++ b/src/lib/variant.cc @@ -36,6 +36,8 @@ static char const* _dcpomatic_playlist_editor = "DCP-o-matic Playlist Editor"; static char const* _dcpomatic_combiner = "DCP-o-matic Combiner"; 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; @@ -155,3 +157,9 @@ variant::show_dcpomatic_website() return _show_dcpomatic_website; } +std::string +variant::report_problem_email() +{ + return _report_problem_email; +} + |
