]> git.saurik.com Git - wxWidgets.git/commitdiff
don't Printf() a string into itself (bug indicated by patch 1443669)
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 5 Mar 2006 20:50:25 +0000 (20:50 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 5 Mar 2006 20:50:25 +0000 (20:50 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37818 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/dirctrlg.cpp

index 7ed847cb70d86c5a638d770acb64839dd958d909..43d34ec9430723d18844bbfe2af7897c4737e523 100644 (file)
@@ -121,9 +121,9 @@ size_t wxGetAvailableDrives(wxArrayString &paths, wxArrayString &names, wxArrayI
         wxChar pname[52];
         if (GetVolumeInformation( path.c_str(), pname, 52, NULL, NULL, NULL, NULL, 0 ))
         {
         wxChar pname[52];
         if (GetVolumeInformation( path.c_str(), pname, 52, NULL, NULL, NULL, NULL, 0 ))
         {
-            name.Printf(wxT("%s %s"), (const wxChar*) name, pname );
+            name << _T(' ') << pname;
         }
         }
-#endif
+#endif // __WXWINCE__
 
         int imageId;
         int driveType = ::GetDriveType(path);
 
         int imageId;
         int driveType = ::GetDriveType(path);