White space.
authorCarl Hetherington <cth@carlh.net>
Fri, 29 Jan 2016 23:17:04 +0000 (23:17 +0000)
committerCarl Hetherington <cth@carlh.net>
Fri, 29 Jan 2016 23:17:04 +0000 (23:17 +0000)
src/wx/content_panel.cc

index ee9ed2bf87c96f8e57ffa28eee9e819ebd3b3dcd..1f9352f06472aec8da5dad412b7407500d5dff2f 100644 (file)
@@ -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) {