No-op: remove all trailing whitespace.
[dcpomatic.git] / src / wx / update_dialog.cc
index c8c90d86e499a22b0ea44ba5716ffa8578cac7f2..e0c08ef158a1356ccf9f06e225fadfa0b02f6a71 100644 (file)
@@ -46,19 +46,19 @@ UpdateDialog::UpdateDialog (wxWindow* parent, optional<string> stable, optional<
                wxHyperlinkCtrl* h = new wxHyperlinkCtrl (this, wxID_ANY, "dcpomatic.com/download", "http://dcpomatic.com/download");
                table->Add (h);
        }
-       
+
        if (test) {
                add_label_to_sizer (table, this, _("Test version ") + std_to_wx (test.get ()), true);
                wxHyperlinkCtrl* h = new wxHyperlinkCtrl (this, wxID_ANY, "dcpomatic.com/test-download", "http://dcpomatic.com/test-download");
                table->Add (h);
        }
-       
+
        overall_sizer->Add (table, 1, wxEXPAND | wxLEFT | wxRIGHT | wxTOP, DCPOMATIC_DIALOG_BORDER);
 
        wxSizer* buttons = CreateButtonSizer (wxOK);
        if (buttons) {
                overall_sizer->Add (buttons, 1, wxEXPAND | wxALL);
        }
-       
+
        SetSizerAndFit (overall_sizer);
 }