OS X build fix.
authorCarl Hetherington <cth@carlh.net>
Wed, 12 Nov 2014 23:13:53 +0000 (23:13 +0000)
committerCarl Hetherington <cth@carlh.net>
Wed, 12 Nov 2014 23:13:53 +0000 (23:13 +0000)
src/wx/report_problem_dialog.cc

index 78c092921ce5d62db81c905207dbd896bcf4dc5f..ae9b1d3ed2f40fc007503aef5a22028c7d03dc98 100644 (file)
@@ -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);