summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-10-17 11:26:03 +0100
committerCarl Hetherington <cth@carlh.net>2018-10-17 11:26:03 +0100
commit4eaecb1841d3a80a4f06613ad4c0bd44d89285a9 (patch)
treeff62f3b4f95b07cefce8edb17364ddcee2c23338 /src
parentc75484af73d38b00a4f27143f8e434b6f25bf355 (diff)
Add some default filenames (#1383).
Diffstat (limited to 'src')
-rw-r--r--src/wx/config_dialog.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/config_dialog.cc b/src/wx/config_dialog.cc
index 495785adf..4195aa128 100644
--- a/src/wx/config_dialog.cc
+++ b/src/wx/config_dialog.cc
@@ -865,7 +865,7 @@ void
KeysPage::export_decryption_chain ()
{
wxFileDialog* d = new wxFileDialog (
- _panel, _("Select Chain File"), wxEmptyString, wxEmptyString, wxT ("PEM files (*.pem)|*.pem"),
+ _panel, _("Select Chain File"), wxEmptyString, _("dcpomatic_kdm_decryption_chain.pem"), wxT ("PEM files (*.pem)|*.pem"),
wxFD_SAVE | wxFD_OVERWRITE_PROMPT
);
@@ -886,7 +886,7 @@ void
KeysPage::export_decryption_certificate ()
{
wxFileDialog* d = new wxFileDialog (
- _panel, _("Select Certificate File"), wxEmptyString, wxEmptyString, wxT ("PEM files (*.pem)|*.pem"),
+ _panel, _("Select Certificate File"), wxEmptyString, _("dcpomatic_kdm_decryption_cert.pem"), wxT ("PEM files (*.pem)|*.pem"),
wxFD_SAVE | wxFD_OVERWRITE_PROMPT
);