]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/filedlg.cpp
No real changes, just some more minor cleanup in wxSVGFileDC.
[wxWidgets.git] / src / msw / filedlg.cpp
index 8aae8b46b176f21fab63a68d2d70a30eb2379b21..32b87f7817d3afac514840e9b580dfa5ec1535d6 100644 (file)
@@ -174,14 +174,6 @@ void wxFileDialog::GetFilenames(wxArrayString& files) const
     files = m_fileNames;
 }
 
-void wxFileDialog::SetPath(const wxString& path)
-{
-    wxString ext;
-    wxFileName::SplitPath(path, &m_dir, &m_fileName, &ext);
-    if ( !ext.empty() )
-        m_fileName << wxT('.') << ext;
-}
-
 void wxFileDialog::DoGetPosition(int *x, int *y) const
 {
     if ( x )
@@ -233,7 +225,7 @@ void wxFileDialog::DoCentre(int dir)
 
 void wxFileDialog::MSWOnInitDone(WXHWND hDlg)
 {
-    // note the the dialog is the parent window: hDlg is a child of it when
+    // note the dialog is the parent window: hDlg is a child of it when
     // OFN_EXPLORER is used
     HWND hFileDlg = ::GetParent((HWND)hDlg);