summaryrefslogtreecommitdiff
path: root/src/wx/kdm_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-07-29 09:57:58 +0100
committerCarl Hetherington <cth@carlh.net>2016-07-29 09:57:58 +0100
commit736b3a068ba5a402b541d32f270669e6e1a4e5c4 (patch)
tree2185f71bde7283683161bd3a557f13b7a610e967 /src/wx/kdm_dialog.cc
parent71be005818ddaa59cdcca2fa5fb3210d8ea7ae4f (diff)
Allow configuration of KDM filename format.
Diffstat (limited to 'src/wx/kdm_dialog.cc')
-rw-r--r--src/wx/kdm_dialog.cc14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/wx/kdm_dialog.cc b/src/wx/kdm_dialog.cc
index 7f3f4b07b..ee164518a 100644
--- a/src/wx/kdm_dialog.cc
+++ b/src/wx/kdm_dialog.cc
@@ -161,3 +161,17 @@ KDMDialog::formulation () const
{
return _output->formulation ();
}
+
+KDMNameFormat
+KDMDialog::name_format () const
+{
+ return _output->name_format ();
+}
+
+int
+KDMDialog::ShowModal ()
+{
+ int const r = wxDialog::ShowModal ();
+ _output->save_kdm_name_format ();
+ return r;
+}