summaryrefslogtreecommitdiff
path: root/src/wx/report_problem_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-11-12 23:13:53 +0000
committerCarl Hetherington <cth@carlh.net>2014-11-12 23:13:53 +0000
commit047f0c6a7fed251ed05f617d740787dcc83c98f7 (patch)
treea934e04d4bd4ed46f91d1a8b4c31135ac4a74026 /src/wx/report_problem_dialog.cc
parentb663e1dc7c857bb7d0d40566fd004f9b7d4be993 (diff)
OS X build fix.
Diffstat (limited to 'src/wx/report_problem_dialog.cc')
-rw-r--r--src/wx/report_problem_dialog.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/wx/report_problem_dialog.cc b/src/wx/report_problem_dialog.cc
index 78c092921..ae9b1d3ed 100644
--- a/src/wx/report_problem_dialog.cc
+++ b/src/wx/report_problem_dialog.cc
@@ -47,10 +47,8 @@ ReportProblemDialog::ReportProblemDialog (wxWindow* parent, shared_ptr<Film> fil
wxString t = _("My problem is");
int flags = wxALIGN_TOP | wxLEFT | wxRIGHT;
#ifdef __WXOSX__
- if (left) {
- flags |= wxALIGN_RIGHT;
- t += wxT (":");
- }
+ flags |= wxALIGN_RIGHT;
+ t += wxT (":");
#endif
wxStaticText* m = new wxStaticText (this, wxID_ANY, t);
_table->Add (m, 1, flags, 6);