diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-06-03 17:10:53 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-06-03 17:10:53 +0100 |
| commit | d1e19450e051d70531a6c1f0973bfd6cfd64319b (patch) | |
| tree | c9c3e407501fc170cc3fd77f37700bd7809b5e60 /src/wx/system_information_dialog.h | |
| parent | 7851658223286410d5afb1e32bc44b4012ec5f55 (diff) | |
More accurate reporting of whether vsync is enabled.
Diffstat (limited to 'src/wx/system_information_dialog.h')
| -rw-r--r-- | src/wx/system_information_dialog.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/wx/system_information_dialog.h b/src/wx/system_information_dialog.h index b82c6341b..63c70fba5 100644 --- a/src/wx/system_information_dialog.h +++ b/src/wx/system_information_dialog.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2014 Carl Hetherington <cth@carlh.net> + Copyright (C) 2019 Carl Hetherington <cth@carlh.net> This file is part of DCP-o-matic. @@ -19,10 +19,13 @@ */ #include "table_dialog.h" +#include <boost/weak_ptr.hpp> + +class FilmViewer; class SystemInformationDialog : public TableDialog { public: - SystemInformationDialog (wxWindow* parent); + SystemInformationDialog (wxWindow* parent, boost::weak_ptr<FilmViewer> viewer); }; |
