From dbb669fc10816728112ca1b8715cf7d6c62cb825 Mon Sep 17 00:00:00 2001 From: Charlie Fenton Date: Mon, 11 Feb 2013 18:53:03 -0800 Subject: [PATCH] Fix wild card in Exclusive Apps dialog for Linux (from Gianfranco Costamagna) --- clientgui/DlgAdvPreferences.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clientgui/DlgAdvPreferences.cpp b/clientgui/DlgAdvPreferences.cpp index 4ec5951543..909b16f3a0 100644 --- a/clientgui/DlgAdvPreferences.cpp +++ b/clientgui/DlgAdvPreferences.cpp @@ -800,9 +800,9 @@ void CDlgAdvPreferences::OnAddExclusiveApp(wxCommandEvent&) { wxT("C:/Program Files"), wxT(""), wxT("*.exe"), wxFD_OPEN|wxFD_FILE_MUST_EXIST|wxFD_CHANGE_DIR|wxFD_MULTIPLE|wxFD_CHANGE_DIR); #else -//TODO: fill in the default directory and wildcard for Linux +//TODO: fill in the default directory for Linux wxFileDialog picker(this, _("Applications to add"), - wxT("/"), wxT(""), wxT("*.*"), + wxT("/"), wxT(""), wxT("*"), wxFD_OPEN|wxFD_FILE_MUST_EXIST|wxFD_CHANGE_DIR|wxFD_MULTIPLE|wxFD_CHANGE_DIR); #endif if (picker.ShowModal() != wxID_OK) return;