diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-07-10 21:31:18 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-07-10 21:31:18 +0100 |
| commit | 8ce733a78369b2146df679f29ebbdff852ef05a5 (patch) | |
| tree | 82094221821bbc3cbfe8c1332069b1d7fc96ec5b /src | |
| parent | b2a8855d38847e98e55b87884cf709a510a49d77 (diff) | |
Go back to quit for menu option name on Linux / Windows.
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/dcpomatic.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc index ac39d4fed..670942e85 100644 --- a/src/tools/dcpomatic.cc +++ b/src/tools/dcpomatic.cc @@ -164,7 +164,13 @@ setup_menu (wxMenuBar* m) #ifndef __WXOSX__ file->AppendSeparator (); #endif + +#ifdef __WXOSX__ add_item (file, _("&Exit"), wxID_EXIT, ALWAYS); +#else + add_item (file, _("&Quit"), wxID_EXIT, ALWAYS); +#endif + #ifdef __WXOSX__ add_item (file, _("&Preferences..."), wxID_PREFERENCES, ALWAYS); |
