diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-06-12 23:35:20 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-06-12 23:35:20 +0100 |
| commit | 068c395576c263aa55f35ad7cfb74cd4eba7c8f6 (patch) | |
| tree | fbf3f7b3eca050a704bae2f922aa4bc3f530ba7f /src/wx | |
| parent | 972272a73300c4d33ae43d572eb1d11f65e2e544 (diff) | |
Credit Gerald Maruccia for the upmixer algorithm.
Diffstat (limited to 'src/wx')
| -rw-r--r-- | src/wx/about_dialog.cc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/wx/about_dialog.cc b/src/wx/about_dialog.cc index 3f0a1056c..e60e56525 100644 --- a/src/wx/about_dialog.cc +++ b/src/wx/about_dialog.cc @@ -111,9 +111,11 @@ AboutDialog::AboutDialog (wxWindow* parent) translated_by.Add (wxT ("Cherif Ben Brahim")); add_section (_("Translated by"), translated_by); - wxArrayString artwork_by; - artwork_by.Add (wxT ("David Vignoni")); - add_section (_("Artwork by"), artwork_by); + wxArrayString with_help_from; + with_help_from.Add (wxT ("David Vignoni")); + with_help_from.Add (wxT ("Dennis Couzin")); + with_help_from.Add (wxT ("Gérald Maruccia")); + add_section (_("With help from"), with_help_from); wxArrayString supported_by; supported_by.Add (wxT ("Manual AC")); |
