diff options
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/variant.cc | 7 | ||||
| -rw-r--r-- | src/lib/variant.h | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/variant.cc b/src/lib/variant.cc index 9b12d753d..a9dc56307 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_credits = true; static bool const _show_report_a_problem = true; static bool const _count_created_dcps = true; @@ -153,6 +154,12 @@ variant::show_dcpomatic_website() } bool +variant::show_credits() +{ + return _show_credits; +} + +bool variant::show_report_a_problem() { return _show_report_a_problem; diff --git a/src/lib/variant.h b/src/lib/variant.h index b69b5ba38..9a42f3eca 100644 --- a/src/lib/variant.h +++ b/src/lib/variant.h @@ -48,6 +48,7 @@ std::string report_problem_email(); bool show_tagline(); bool show_dcpomatic_website(); +bool show_credits(); bool show_report_a_problem(); bool count_created_dcps(); |
