diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-09-10 22:25:43 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-09-10 22:25:43 +0100 |
| commit | 4367bc00113274f4cc426a1c053bb7f149a0f83e (patch) | |
| tree | 5e805cc77ba778ebba4f884754d5871dc42a16d0 /src | |
| parent | 9642a2a4e7fdd8a44d229667abafbacdb1e059bf (diff) | |
Fix OS X build.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/config_dialog.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/wx/config_dialog.cc b/src/wx/config_dialog.cc index 404e5ba17..2f9b9329e 100644 --- a/src/wx/config_dialog.cc +++ b/src/wx/config_dialog.cc @@ -805,13 +805,13 @@ public: table->Add (_allow_any_dcp_frame_rate, 1, wxEXPAND | wxALL); table->AddSpacer (0); - int flags = wxALIGN_TOP | wxLEFT | wxRIGHT | wxEXPAND | wxALL; #ifdef __WXOSX__ - flags |= wxALIGN_RIGHT; - t += wxT (":"); -#endif + wxStaticText* m = new wxStaticText (panel, wxID_ANY, _("Log:")); + table->Add (m, 0, wxALIGN_TOP | wxLEFT | wxRIGHT | wxEXPAND | wxALL | wxALIGN_RIGHT, 6); +#else wxStaticText* m = new wxStaticText (panel, wxID_ANY, _("Log")); - table->Add (m, 0, flags, 6); + table->Add (m, 0, wxALIGN_TOP | wxLEFT | wxRIGHT | wxEXPAND | wxALL, 6); +#endif { wxBoxSizer* t = new wxBoxSizer (wxVERTICAL); |
