]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/volume.cpp
preliminary fix, for using the correct output encoding on mac
[wxWidgets.git] / src / msw / volume.cpp
index 2b4f3291382f53c2fedb445bf79f1b2beb4f156c..f1750775a5e6635fb2598a6719e07bae85952d41 100644 (file)
@@ -44,6 +44,7 @@
 #include "wx/volume.h"
 
 #include <shellapi.h>
+#include <shlobj.h>
 #include "wx/msw/missing.h"
 
 #if wxUSE_BASE
@@ -404,7 +405,7 @@ wxArrayString wxFSVolumeBase::GetVolumes(int flagsSet, int flagsUnset)
     TCHAR* buf = new TCHAR[chars+1];
 
     // Get the list of drives.
-    chars = GetLogicalDriveStrings(chars, buf);
+    GetLogicalDriveStrings(chars, buf);
 
     // Parse the list into an array, applying appropriate filters.
     TCHAR *pVol;