summaryrefslogtreecommitdiff
path: root/src/wx/kdm_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-05-04 23:02:45 +0200
committerCarl Hetherington <cth@carlh.net>2020-05-06 20:15:16 +0200
commitca56871d4860b8ead384c410fe374c2fa993f88f (patch)
tree66550be54fafd67b71bd8f91b3cd105213a31b58 /src/wx/kdm_dialog.cc
parent36ce958a516567d8481163692c028a88c6ce0df7 (diff)
Add KDMWithMetadataPtr typedef
Diffstat (limited to 'src/wx/kdm_dialog.cc')
-rw-r--r--src/wx/kdm_dialog.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/kdm_dialog.cc b/src/wx/kdm_dialog.cc
index 06600ac7a..b067ff04a 100644
--- a/src/wx/kdm_dialog.cc
+++ b/src/wx/kdm_dialog.cc
@@ -150,7 +150,7 @@ KDMDialog::make_clicked ()
shared_ptr<const Film> film = _film.lock ();
DCPOMATIC_ASSERT (film);
- list<shared_ptr<KDMWithMetadata> > screen_kdms;
+ list<KDMWithMetadataPtr> screen_kdms;
try {
/* Start off by enabling forensic marking for all */
optional<int> for_audio;
@@ -175,7 +175,7 @@ KDMDialog::make_clicked ()
for_audio
);
- screen_kdms.push_back (shared_ptr<KDMWithMetadata>(new DCPKDMWithMetadata(i, kdm)));
+ screen_kdms.push_back (KDMWithMetadataPtr(new DCPKDMWithMetadata(i, kdm)));
}
}