summaryrefslogtreecommitdiff
path: root/src/wx/system_information_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-06-09 00:17:13 +0200
committerCarl Hetherington <cth@carlh.net>2021-09-27 13:41:46 +0200
commit4f4561c4b5bb1e8a2fa8e673606d18ffa25aec6c (patch)
tree85d897751e2ea5616879aa6cc2808539dc281823 /src/wx/system_information_dialog.cc
parent0b791ea708dfa1f5cd44522988dd5efdf2a0b94b (diff)
C++11 tidying.
Diffstat (limited to 'src/wx/system_information_dialog.cc')
-rw-r--r--src/wx/system_information_dialog.cc12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/wx/system_information_dialog.cc b/src/wx/system_information_dialog.cc
index 7aabf1bf5..ed93a4ab4 100644
--- a/src/wx/system_information_dialog.cc
+++ b/src/wx/system_information_dialog.cc
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2019 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2019-2021 Carl Hetherington <cth@carlh.net>
This file is part of DCP-o-matic.
@@ -18,10 +18,12 @@
*/
+
+#include "film_viewer.h"
+#include "gl_video_view.h"
#include "system_information_dialog.h"
#include "wx_util.h"
-#include "gl_video_view.h"
-#include "film_viewer.h"
+
#ifdef DCPOMATIC_OSX
#include <OpenGL/glu.h>
@@ -31,10 +33,12 @@
#include <GL/glext.h>
#endif
+
using std::string;
using std::weak_ptr;
using std::shared_ptr;
+
SystemInformationDialog::SystemInformationDialog (wxWindow* parent, weak_ptr<FilmViewer> weak_viewer)
: TableDialog (parent, _("System information"), 2, 1, false)
{
@@ -49,7 +53,7 @@ SystemInformationDialog::SystemInformationDialog (wxWindow* parent, weak_ptr<Fil
add (_("unknown (OpenGL not enabled in DCP-o-matic)"), false);
} else {
add (_("OpenGL version"), true);
- char const * v = (char const *) glGetString (GL_VERSION);
+ auto v = reinterpret_cast<char const *>(glGetString(GL_VERSION));
if (v) {
add (std_to_wx(v), false);
} else {