diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-06-13 21:55:28 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-06-13 21:55:28 +0100 |
| commit | 4e20374d794c790c9633141849882da1458307cf (patch) | |
| tree | 43c9f8a53185e6912c10c331ab96d2828352ff0b /src | |
| parent | e36c24bf1522593976de7de2c4d79c76f0ba36a8 (diff) | |
Add URL to about box.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/about_dialog.cc | 9 |
1 files changed, 9 insertions, 0 deletions
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 <wx/notebook.h> +#include <wx/hyperlink.h> #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"), |
