]> git.saurik.com Git - wxWidgets.git/commitdiff
Don't prepend directory to filename for shortcuts
authorJulian Smart <julian@anthemion.co.uk>
Sun, 18 May 2003 09:20:42 +0000 (09:20 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Sun, 18 May 2003 09:20:42 +0000 (09:20 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20656 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/filedlg.tex
src/msw/filedlg.cpp

index 36657dadfe73af7dc5f9d425a97bddc1c23ff9d7..29e10053dc864c0b257bd179d6891f19a87856a4 100644 (file)
@@ -118,6 +118,11 @@ Fills the array {\it filenames} with the names of the files chosen. This
 function should only be used with the dialogs which have {\tt wxMULTIPLE} style,
 use \helpref{GetFilename}{wxfiledialoggetfilename} for the others.
 
+Note that under Windows, if the user selects shortcuts, the filenames
+include paths, since the application cannot determine the full path
+of each referenced file by appending the directory containing the shortcuts
+to the filename.
+
 \membersection{wxFileDialog::GetFilterIndex}\label{wxfiledialoggetfilterindex}
 
 \constfunc{int}{GetFilterIndex}{\void}
index 0de0f976be9743e95cde64bff3785800ac8882aa..12d9f091e72633e23cf06f680a9afbb4cb034f7a 100644 (file)
@@ -51,6 +51,7 @@
 #include <stdlib.h>
 #include <string.h>
 
+#include "wx/filename.h"
 #include "wx/tokenzr.h"
 
 #ifndef OFN_EXPLORER
@@ -229,7 +230,10 @@ void wxFileDialog::GetPaths(wxArrayString& paths) const
     size_t count = m_fileNames.GetCount();
     for ( size_t n = 0; n < count; n++ )
     {
-        paths.Add(dir + m_fileNames[n]);
+        if (wxFileName(m_fileNames[n]).IsAbsolute())
+            paths.Add(m_fileNames[n]);
+        else
+            paths.Add(dir + m_fileNames[n]);
     }
 }