summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-01-20 01:12:10 +0000
committerCarl Hetherington <cth@carlh.net>2019-01-20 01:12:10 +0000
commit2ac0a4eb4629b9bb683f44589d0d2a4d53c7f137 (patch)
tree2d23df0abf50a182ef22ce6363918162be9cdb9a /src
parent571a7747012498b6b181eb0b03adc47004b86666 (diff)
Swap order in about box.
Diffstat (limited to 'src')
-rw-r--r--src/wx/about_dialog.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/wx/about_dialog.cc b/src/wx/about_dialog.cc
index 061d44f49..2c32b3e9e 100644
--- a/src/wx/about_dialog.cc
+++ b/src/wx/about_dialog.cc
@@ -98,6 +98,14 @@ AboutDialog::AboutDialog (wxWindow* parent)
written_by.Add (wxT ("Jianguo Huang"));
add_section (_("Written by"), written_by);
+ wxArrayString with_help_from;
+ with_help_from.Add (wxT ("David Vignoni"));
+ with_help_from.Add (wxT ("Dennis Couzin"));
+ with_help_from.Add (wxT ("Carsten Kurz"));
+ with_help_from.Add (wxT ("Gérald Maruccia"));
+ with_help_from.Add (wxT ("Julian van Mil"));
+ add_section (_("With help from"), with_help_from);
+
wxArrayString translated_by;
translated_by.Add (wxT ("Manuel AC"));
translated_by.Add (wxT ("Max Aeschlimann"));
@@ -131,14 +139,6 @@ AboutDialog::AboutDialog (wxWindow* parent)
translated_by.Add (wxT ("刘汉源"));
add_section (_("Translated by"), translated_by);
- wxArrayString with_help_from;
- with_help_from.Add (wxT ("David Vignoni"));
- with_help_from.Add (wxT ("Dennis Couzin"));
- with_help_from.Add (wxT ("Carsten Kurz"));
- with_help_from.Add (wxT ("Gérald Maruccia"));
- 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);