X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Fwx%2Fabout_dialog.cc;fp=src%2Fwx%2Fabout_dialog.cc;h=7844180fa25b6ecb63ac003b848fd756f34cbeda;hp=27644a00f1e001a4a07a9290ec9961e2d1d64520;hb=a183c1776cfd020a37d028ebb0f641352f49697b;hpb=4fe7c89e54205c56f0fba2da24db66734ce23674 diff --git a/src/wx/about_dialog.cc b/src/wx/about_dialog.cc index 27644a00f..7844180fa 100644 --- a/src/wx/about_dialog.cc +++ b/src/wx/about_dialog.cc @@ -27,7 +27,7 @@ using std::vector; AboutDialog::AboutDialog (wxWindow* parent) - : wxDialog (parent, wxID_ANY, _("About DVD-o-matic")) + : wxDialog (parent, wxID_ANY, _("About DCP-o-matic")) { wxBoxSizer* sizer = new wxBoxSizer (wxVERTICAL); @@ -38,15 +38,15 @@ AboutDialog::AboutDialog (wxWindow* parent) wxFont version_font (*wxNORMAL_FONT); version_font.SetWeight (wxFONTWEIGHT_BOLD); - wxStaticText* t = new wxStaticText (this, wxID_ANY, _("DVD-o-matic")); + wxStaticText* t = new wxStaticText (this, wxID_ANY, _("DCP-o-matic")); t->SetFont (title_font); sizer->Add (t, wxSizerFlags().Centre().Border()); wxString s; - if (strcmp (dvdomatic_git_commit, "release") == 0) { - t = new wxStaticText (this, wxID_ANY, std_to_wx (String::compose ("Version %1", dvdomatic_version))); + if (strcmp (dcpomatic_git_commit, "release") == 0) { + t = new wxStaticText (this, wxID_ANY, std_to_wx (String::compose ("Version %1", dcpomatic_version))); } else { - t = new wxStaticText (this, wxID_ANY, std_to_wx (String::compose ("Version %1 git %2", dvdomatic_version, dvdomatic_git_commit))); + t = new wxStaticText (this, wxID_ANY, std_to_wx (String::compose ("Version %1 git %2", dcpomatic_version, dcpomatic_git_commit))); } t->SetFont (version_font); sizer->Add (t, wxSizerFlags().Centre().Border()); @@ -62,8 +62,8 @@ AboutDialog::AboutDialog (wxWindow* parent) wxHyperlinkCtrl* h = new wxHyperlinkCtrl ( this, wxID_ANY, - wxT ("www.carlh.net/software/dvdomatic"), - wxT ("http://www.carlh.net/software/dvdomatic") + wxT ("www.carlh.net/software/dcpomatic"), + wxT ("http://www.carlh.net/software/dcpomatic") ); sizer->Add (h, wxSizerFlags().Centre().Border()); @@ -117,10 +117,6 @@ AboutDialog::AboutDialog (wxWindow* parent) sizer->Add (_notebook, wxSizerFlags().Centre().Border().Expand()); -#if 0 - info.SetWebSite (wxT ("http://carlh.net/software/dvdomatic")); -#endif - SetSizerAndFit (sizer); }