From: Carl Hetherington Date: Thu, 13 Jun 2013 20:55:28 +0000 (+0100) Subject: Add URL to about box. X-Git-Tag: v2.0.48~1337^2~324^2~4 X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;h=4e20374d794c790c9633141849882da1458307cf;p=dcpomatic.git Add URL to about box. --- diff --git a/src/wx/about_dialog.cc b/src/wx/about_dialog.cc index 84cfbce08..27644a00f 100644 --- a/src/wx/about_dialog.cc +++ b/src/wx/about_dialog.cc @@ -18,6 +18,7 @@ */ #include +#include #include "lib/version.h" #include "lib/compose.hpp" #include "about_dialog.h" @@ -59,6 +60,14 @@ AboutDialog::AboutDialog (wxWindow* parent) sizer->Add (t, wxSizerFlags().Centre().Border()); + wxHyperlinkCtrl* h = new wxHyperlinkCtrl ( + this, wxID_ANY, + wxT ("www.carlh.net/software/dvdomatic"), + wxT ("http://www.carlh.net/software/dvdomatic") + ); + + sizer->Add (h, wxSizerFlags().Centre().Border()); + t = new wxStaticText ( this, wxID_ANY, _("(C) 2012-2013 Carl Hetherington, Terrence Meiczinger, Paul Davis, Ole Laursen"),