IMPLEMENT_CLASS(wxDirDialog, wxDialog)
wxDirDialog::wxDirDialog(wxWindow *parent, const wxString& message,
- const wxString& defaultPath, long style, const wxPoint& pos,
- const wxSize& size, const wxString& name)
+ const wxString& defaultPath, long style, const wxPoint& WXUNUSED(pos),
+ const wxSize& WXUNUSED(size), const wxString& WXUNUSED(name))
{
m_parent = parent;
}
if (returnCode == NSOKButton )
{
- wxCFStringRef resultpath( [[[oPanel filenames] objectAtIndex:0] retain] );
-
- SetPath( resultpath.AsString() );
+ SetPath( wxCFStringRef::AsString([[oPanel filenames] objectAtIndex:0]));
result = wxID_OK;
}
return result;