]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/volume.cpp
Added FindItemAtPoint
[wxWidgets.git] / src / msw / volume.cpp
index 97723420c3dd333622161c5b102004e07ca201cd..d82a59aed5cfca670f2be41736ba34aa1f310a5b 100644 (file)
@@ -17,7 +17,7 @@
 // headers
 // ----------------------------------------------------------------------------
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
     #pragma implementation "fsvolume.h"
 #endif
 
@@ -404,7 +404,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;