X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fsystem_information_dialog.cc;h=addb89da4c7ab7d64882905b830b1f6651a23312;hb=182b9d2e2feb6545592868606aaf0f0146095481;hp=1c8dd8d00c2757defff1c1772739bd32aa4c1aac;hpb=e9ae050b0b15c91c3f591ad84938e60d271357b3;p=dcpomatic.git diff --git a/src/wx/system_information_dialog.cc b/src/wx/system_information_dialog.cc index 1c8dd8d00..addb89da4 100644 --- a/src/wx/system_information_dialog.cc +++ b/src/wx/system_information_dialog.cc @@ -39,6 +39,8 @@ using std::weak_ptr; using std::shared_ptr; +#if wxCHECK_VERSION(3, 1, 0) + SystemInformationDialog::SystemInformationDialog (wxWindow* parent, weak_ptr weak_viewer) : TableDialog (parent, _("System information"), 2, 1, false) { @@ -75,3 +77,14 @@ SystemInformationDialog::SystemInformationDialog (wxWindow* parent, weak_ptr) + : TableDialog (parent, _("System information"), 2, 1, false) +{ + add (_("OpenGL version"), true); + add (_("OpenGL renderer not supported by this DCP-o-matic version"), false); +} + +#endif