diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-04-26 22:34:35 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-04-26 22:34:35 +0200 |
| commit | d40d196a777666206f39094c39956bb654b9b64c (patch) | |
| tree | ca98806117ac68198554897e0dd51a68eef41915 /src/lib/variant.cc | |
| parent | 8fcadb1b9b2afc4994e03377105b92cae4eb54a1 (diff) | |
Allow branding of "report a problem" dialog.
Diffstat (limited to 'src/lib/variant.cc')
| -rw-r--r-- | src/lib/variant.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/variant.cc b/src/lib/variant.cc index f1c2af17b..00e9ab991 100644 --- a/src/lib/variant.cc +++ b/src/lib/variant.cc @@ -40,6 +40,7 @@ static char const* _report_problem_email = "carl@dcpomatic.com"; static bool const _show_tagline = true; static bool const _show_dcpomatic_website = true; +static bool const _show_report_a_problem = false; std::string @@ -150,6 +151,12 @@ variant::show_dcpomatic_website() return _show_dcpomatic_website; } +bool +variant::show_report_a_problem() +{ + return _show_report_a_problem; +} + std::string variant::report_problem_email() { |
