summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-08-14 21:11:09 +0100
committerCarl Hetherington <cth@carlh.net>2018-08-14 21:11:09 +0100
commita09fa32118828d2af282566e94aacd7f153b8643 (patch)
treec0c4841c284b4f79aa6f2c66a6d72555c4dd5b96 /src
parent4ff0e7ddb7580e91892075f6f11e2ef6d29578d6 (diff)
Add subscribers in their own part of the about box.
Diffstat (limited to 'src')
-rw-r--r--src/wx/about_dialog.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/wx/about_dialog.cc b/src/wx/about_dialog.cc
index 2461e7bbb..1a4513a74 100644
--- a/src/wx/about_dialog.cc
+++ b/src/wx/about_dialog.cc
@@ -137,9 +137,13 @@ AboutDialog::AboutDialog (wxWindow* parent)
with_help_from.Add (wxT ("Julian van Mil"));
add_section (_("With help from"), with_help_from);
+ wxArrayString subscribers;
+ #include "subscribers.cc"
+ add_section (_("Subscribers"), subscribers);
+
wxArrayString supported_by;
#include "supporters.cc"
- add_section (_("Supported by"), supported_by);
+ add_section (_("Also supported by"), supported_by);
wxArrayString tested_by;
tested_by.Add (wxT ("Manuel AC"));