From 4e20374d794c790c9633141849882da1458307cf Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 13 Jun 2013 21:55:28 +0100 Subject: [PATCH] Add URL to about box. --- src/wx/about_dialog.cc | 9 +++++++++ 1 file changed, 9 insertions(+) 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"), -- 2.30.2