summaryrefslogtreecommitdiff
path: root/src/wx/markers_dialog.h
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.h
parent2b546a0c8edcd8b1f8917902461c7bbff61f7325 (diff)
C++11 tidying.
Diffstat (limited to 'src/wx/markers_dialog.h')
-rw-r--r--src/wx/markers_dialog.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/markers_dialog.h b/src/wx/markers_dialog.h
index a3f3532e5..7d713bd59 100644
--- a/src/wx/markers_dialog.h
+++ b/src/wx/markers_dialog.h
@@ -37,6 +37,6 @@ public:
MarkersDialog (wxWindow* parent, std::weak_ptr<Film> film, std::weak_ptr<FilmViewer> viewer);
private:
- std::list<std::shared_ptr<Marker> > _markers;
+ std::list<std::shared_ptr<Marker>> _markers;
std::weak_ptr<Film> _film;
};