diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-08-01 00:48:15 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-08-01 00:48:15 +0100 |
| commit | 1d022220899c63e2cae0a2a9a81f6c6db955a23d (patch) | |
| tree | fdf436255ae717e6269d98626e9d45824fc77e82 /src/wx/kdm_output_panel.cc | |
| parent | 9c01623c3038b978ba732de2ad147d29fad60afe (diff) | |
Simplify NameFormat stuff.
Diffstat (limited to 'src/wx/kdm_output_panel.cc')
| -rw-r--r-- | src/wx/kdm_output_panel.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/kdm_output_panel.cc b/src/wx/kdm_output_panel.cc index 2808357d4..537cf6652 100644 --- a/src/wx/kdm_output_panel.cc +++ b/src/wx/kdm_output_panel.cc @@ -68,7 +68,7 @@ KDMOutputPanel::KDMOutputPanel (wxWindow* parent, bool interop) ex['s'] = "Screen 1"; ex['b'] = "2012/03/15 12:30"; ex['e'] = "2012/03/22 02:30"; - _filename_format = new NameFormatEditor<KDMFilenameFormat> (this, Config::instance()->kdm_filename_format(), titles, ex); + _filename_format = new NameFormatEditor (this, Config::instance()->kdm_filename_format(), titles, ex); table->Add (_filename_format->panel(), 1, wxEXPAND); _write_to = new wxRadioButton (this, wxID_ANY, _("Write to")); @@ -126,7 +126,7 @@ KDMOutputPanel::save_kdm_name_format () const Config::instance()->set_kdm_filename_format (name_format ()); } -KDMFilenameFormat +dcp::NameFormat KDMOutputPanel::name_format () const { return _filename_format->get (); |
