summaryrefslogtreecommitdiff
path: root/src/wx/markers_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-04-15 23:51:08 +0200
committerCarl Hetherington <cth@carlh.net>2021-04-16 01:11:04 +0200
commit55c007ab910ee9586d6bd2faba165e42f6148622 (patch)
treeb411cfc71111eae285ff3b71d584a7e9c933471a /src/wx/markers_dialog.cc
parent2b546a0c8edcd8b1f8917902461c7bbff61f7325 (diff)
C++11 tidying.
Diffstat (limited to 'src/wx/markers_dialog.cc')
-rw-r--r--src/wx/markers_dialog.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/wx/markers_dialog.cc b/src/wx/markers_dialog.cc
index 6658fdb45..821258a20 100644
--- a/src/wx/markers_dialog.cc
+++ b/src/wx/markers_dialog.cc
@@ -18,6 +18,7 @@
*/
+
#include "markers_dialog.h"
#include "wx_util.h"
#include "timecode.h"
@@ -31,6 +32,7 @@
#include <boost/bind/bind.hpp>
#include <iostream>
+
using std::cout;
using std::shared_ptr;
using std::weak_ptr;
@@ -39,6 +41,7 @@ using boost::optional;
using boost::bind;
using dcpomatic::DCPTime;
+
class Marker
{
public:
@@ -112,6 +115,7 @@ private:
Button* set_button;
};
+
MarkersDialog::MarkersDialog (wxWindow* parent, weak_ptr<Film> film, weak_ptr<FilmViewer> viewer)
: wxDialog (parent, wxID_ANY, _("Markers"))
, _film (film)