No-op: remove all trailing whitespace.
[dcpomatic.git] / src / wx / about_dialog.cc
index 13a1ef67111d433fd5512df84416360c5c8dfdae..142705a557008d90f12dee019242592d7223b02a 100644 (file)
@@ -35,7 +35,7 @@ AboutDialog::AboutDialog (wxWindow* parent)
 {
        wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
        wxBoxSizer* sizer = new wxBoxSizer (wxVERTICAL);
-       
+
        wxFont title_font (*wxNORMAL_FONT);
        title_font.SetPointSize (title_font.GetPointSize() + 12);
        title_font.SetWeight (wxFONTWEIGHT_BOLD);
@@ -45,7 +45,7 @@ AboutDialog::AboutDialog (wxWindow* parent)
 
        wxFont version_font (*wxNORMAL_FONT);
        version_font.SetWeight (wxFONTWEIGHT_BOLD);
-       
+
        wxStaticText* t = new wxStaticText (this, wxID_ANY, _("DCP-o-matic"));
        t->SetFont (title_font);
        sizer->Add (t, wxSizerFlags().Centre().Border(wxALL, 16));
@@ -66,7 +66,7 @@ AboutDialog::AboutDialog (wxWindow* parent)
                wxDefaultPosition, wxDefaultSize, wxALIGN_CENTER
                );
        t->SetFont (subtitle_font);
-       
+
        sizer->Add (t, wxSizerFlags().Centre().Border(wxALL, 8));
 
        wxHyperlinkCtrl* h = new wxHyperlinkCtrl (
@@ -82,7 +82,7 @@ AboutDialog::AboutDialog (wxWindow* parent)
                _("(C) 2012-2015 Carl Hetherington, Terrence Meiczinger\n Ole Laursen, Brecht Sanders"),
                wxDefaultPosition, wxDefaultSize, wxALIGN_CENTER
                );
-       
+
        sizer->Add (t, wxSizerFlags().Centre().Border(wxLEFT | wxRIGHT, 16));
 
        _notebook = new wxNotebook (this, wxID_ANY);
@@ -236,7 +236,7 @@ AboutDialog::AboutDialog (wxWindow* parent)
        tested_by.Add (wxT ("Paul Willmott"));
        tested_by.Add (wxT ("Wolfgang Woehl"));
        add_section (_("Tested by"), tested_by);
-       
+
        sizer->Add (_notebook, wxSizerFlags().Centre().Border(wxALL, 16).Expand());
 
        overall_sizer->Add (sizer);
@@ -245,7 +245,7 @@ AboutDialog::AboutDialog (wxWindow* parent)
        if (buttons) {
                overall_sizer->Add (buttons, 1, wxEXPAND | wxALL, 4);
        }
-       
+
        SetSizerAndFit (overall_sizer);
 }
 
@@ -263,7 +263,7 @@ AboutDialog::add_section (wxString name, wxArrayString credits)
        wxSizer* overall_sizer = new wxBoxSizer (wxHORIZONTAL);
 
        vector<wxSizer*> sizers;
-       
+
        for (int i = 0; i < N; ++i) {
                sizers.push_back (new wxBoxSizer (wxVERTICAL));
                overall_sizer->Add (sizers.back (), 1, wxEXPAND | wxALL, 6);