// Name: src/gtk/dirdlg.cpp
// Purpose: native implementation of wxDirDialog
// Author: Robert Roebling, Zbigniew Zagorski, Mart Raudsepp, Francesco Montorsi
-// Id: $Id$
// Copyright: (c) 1998 Robert Roebling, 2004 Zbigniew Zagorski, 2005 Mart Raudsepp
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#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,
// change to the directory where the user went if asked
if (HasFlag(wxDD_CHANGE_DIR))
{
- chdir(m_selectedDirectory);
+ wxSetWorkingDirectory(m_selectedDirectory);
}
EndDialog(wxID_OK);