X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/75cb911c7c8a475269901bf5f0c69c583d79e498..4e15d1caa03346c126015019c1fdf093033ef40b:/src/generic/filepickerg.cpp diff --git a/src/generic/filepickerg.cpp b/src/generic/filepickerg.cpp index edfcfc5fea..a33a965db0 100644 --- a/src/generic/filepickerg.cpp +++ b/src/generic/filepickerg.cpp @@ -113,41 +113,28 @@ void wxGenericFileDirButton::SetInitialDirectory(const wxString& dir) } // ---------------------------------------------------------------------------- -// wxGenericFileutton +// wxGenericFileButton // ---------------------------------------------------------------------------- -void -wxGenericFileButton::DoSetInitialDirectory(wxFileDialog* dialog, - const wxString& dir) -{ - if ( m_path.find_first_of(wxFileName::GetPathSeparators()) == - wxString::npos ) - { - dialog->SetDirectory(dir); - } -} - wxDialog *wxGenericFileButton::CreateDialog() { - wxFileDialog* const dialog = new wxFileDialog - ( - GetDialogParent(), - m_message, - wxEmptyString, - wxEmptyString, - m_wildcard, - GetDialogStyle() - ); - - // this sets both the default folder and the default file of the dialog - dialog->SetPath(m_path); - - // If there is no default file or if it doesn't have any path, use the - // explicitly set initial directory. - if ( !m_initialDir.empty() ) - DoSetInitialDirectory(dialog, m_initialDir); - - return dialog; + // Determine the initial directory for the dialog: it comes either from the + // default path, if it has it, or from the separately specified initial + // directory that can be set even if the path is e.g. empty. + wxFileName fn(m_path); + wxString initialDir = fn.GetPath(); + if ( initialDir.empty() ) + initialDir = m_initialDir; + + return new wxFileDialog + ( + GetDialogParent(), + m_message, + initialDir, + fn.GetFullName(), + m_wildcard, + GetDialogStyle() + ); } // ----------------------------------------------------------------------------