summaryrefslogtreecommitdiff
path: root/src/wx/kdm_output_panel.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-05-05 20:03:55 +0200
committerCarl Hetherington <cth@carlh.net>2020-05-06 20:15:49 +0200
commit6a63fd3497407f4ac978205e17a358af095882be (patch)
treec4608c0cfe64ca6b2c2b4aab3f95a185705c9038 /src/wx/kdm_output_panel.cc
parent198ea7d7dbd0140f3eeea2cc35ae9f0312ea78a1 (diff)
Remove some now-pointless passing of name_values.
Diffstat (limited to 'src/wx/kdm_output_panel.cc')
-rw-r--r--src/wx/kdm_output_panel.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/wx/kdm_output_panel.cc b/src/wx/kdm_output_panel.cc
index 0a70ff125..f37865b94 100644
--- a/src/wx/kdm_output_panel.cc
+++ b/src/wx/kdm_output_panel.cc
@@ -239,7 +239,6 @@ KDMOutputPanel::make (
shared_ptr<Job> job;
try {
- dcp::NameFormat::Map name_values;
if (_write_to->GetValue()) {
if (_write_flat->GetValue()) {
@@ -247,7 +246,6 @@ KDMOutputPanel::make (
kdms,
directory(),
_filename_format->get(),
- name_values,
confirm_overwrite
);
} else if (_write_folder->GetValue()) {
@@ -256,7 +254,6 @@ KDMOutputPanel::make (
directory(),
_container_name_format->get(),
_filename_format->get(),
- name_values,
confirm_overwrite
);
} else if (_write_zip->GetValue()) {
@@ -265,7 +262,6 @@ KDMOutputPanel::make (
directory(),
_container_name_format->get(),
_filename_format->get(),
- name_values,
confirm_overwrite
);
}
@@ -277,7 +273,6 @@ KDMOutputPanel::make (
cinema_kdms,
_container_name_format->get(),
_filename_format->get(),
- name_values,
name
)
);