summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-01-29 23:17:04 +0000
committerCarl Hetherington <cth@carlh.net>2016-01-29 23:17:04 +0000
commit77d530b693f01decd490dfbbad8bfa26087461af (patch)
treef9633dce3a560e262645ec51a6fb7f3dcfbb14a6 /src
parent218ffe2c5f92ed19ec488cda5012b64fcabd5e3f (diff)
White space.
Diffstat (limited to 'src')
-rw-r--r--src/wx/content_panel.cc10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/wx/content_panel.cc b/src/wx/content_panel.cc
index ee9ed2bf8..1f9352f06 100644
--- a/src/wx/content_panel.cc
+++ b/src/wx/content_panel.cc
@@ -244,7 +244,15 @@ ContentPanel::add_file_clicked ()
/* The wxFD_CHANGE_DIR here prevents a `could not set working directory' error 123 on Windows when using
non-Latin filenames or paths.
*/
- wxFileDialog* d = new wxFileDialog (_panel, _("Choose a file or files"), wxT (""), wxT (""), wxT ("All files|*.*|Subtitle files|*.srt;*.xml|Audio files|*.wav;*.w64;*.flac;*.aif;*.aiff"), wxFD_MULTIPLE | wxFD_CHANGE_DIR);
+ wxFileDialog* d = new wxFileDialog (
+ _panel,
+ _("Choose a file or files"),
+ wxT (""),
+ wxT (""),
+ wxT ("All files|*.*|Subtitle files|*.srt;*.xml|Audio files|*.wav;*.w64;*.flac;*.aif;*.aiff"),
+ wxFD_MULTIPLE | wxFD_CHANGE_DIR
+ );
+
int const r = d->ShowModal ();
if (r != wxID_OK) {