Use wxSetWorkingDirectory() instead of chdir().

This fixes compilation of wxGTK under Windows after the changes of r72779 and
r72780, where _wchdir() would need to be used but we don't currently have a
wxChdir() CRT function wrapper so use wxSetWorkingDirectory() instead.

Closes #14886.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73160 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2012-12-10 14:41:31 +00:00
parent 6a5c9ff8e8
commit 7c211441f4

View File

@@ -31,10 +31,6 @@
#include "wx/gtk/private.h"
#ifdef __UNIX__
#include <unistd.h> // chdir
#endif
extern "C" {
static void gtk_dirdialog_response_callback(GtkWidget * WXUNUSED(w),
gint response,
@@ -131,7 +127,7 @@ void wxDirDialog::GTKOnAccept()
// change to the directory where the user went if asked
if (HasFlag(wxDD_CHANGE_DIR))
{
chdir(m_selectedDirectory.fn_str());
wxSetWorkingDirectory(m_selectedDirectory);
}
EndDialog(wxID_OK);