]> git.pld-linux.org Git - packages/wxWidgets.git/commitdiff
- more unicode compliance
authorJakub Bogusz <qboosh@pld-linux.org>
Mon, 1 Oct 2012 19:15:27 +0000 (21:15 +0200)
committerJakub Bogusz <qboosh@pld-linux.org>
Mon, 1 Oct 2012 19:15:27 +0000 (21:15 +0200)
wxWidgets-format.patch

index ceec812f438851a4eaa3cab6fa75637db48d8b7b..a9e0032d2a897623b411712e0025d8280583d73f 100644 (file)
@@ -57,7 +57,7 @@
      {
          if (flagVerbose)
 -            wxPrintf(wxT("processing ") + parFiles[i] +  wxT("...\n"));
-+            wxPrintf("processing %s...\n", parFiles[i].c_str());
++            wxPrintf(wxT("processing %s...\n"), parFiles[i].c_str());
  
          wxXmlDocument doc;
  
@@ -73,7 +73,7 @@
  
              if (flagVerbose)
 -                wxPrintf(wxT("adding     ") + fullname +  wxT("...\n"));
-+                wxPrintf("adding     %s...\n", fullname.c_str());
++                wxPrintf(wxT("adding     %s...\n"), fullname.c_str());
  
              wxString filename = GetInternalFileName(n->GetContent(), flist);
              n->SetContent(filename);
@@ -82,7 +82,7 @@
  
      if (flagVerbose)
 -        wxPrintf(wxT("compressing ") + parOutput +  wxT("...\n"));
-+        wxPrintf("compressing %s...\n", parOutput.c_str());
++        wxPrintf(wxT("compressing %s...\n"), parOutput.c_str());
  
      wxString cwd = wxGetCwd();
      wxSetWorkingDirectory(parOutputPath);
@@ -91,7 +91,7 @@
  
      if (flagVerbose)
 -        wxPrintf(wxT("creating C++ source file ") + parOutput +  wxT("...\n"));
-+        wxPrintf("creating C++ source file %s...\n", parOutput.c_str());
++        wxPrintf(wxT("creating C++ source file %s...\n"), parOutput.c_str());
  
      file.Write(wxT("")
  wxT("//\n")
  
      if (flagVerbose)
 -        wxPrintf(wxT("creating Python source file ") + parOutput +  wxT("...\n"));
-+        wxPrintf("creating Python source file %s...\n", parOutput.c_str());
++        wxPrintf(wxT("creating Python source file %s...\n"), parOutput.c_str());
  
      file.Write(
         wxT("#\n")
      {
          if (flagVerbose)
 -            wxPrintf(wxT("processing ") + parFiles[i] +  wxT("...\n"));
-+            wxPrintf("processing %s...", parFiles[i].c_str());
++            wxPrintf(wxT("processing %s..."), parFiles[i].c_str());
  
          wxXmlDocument doc;
          if (!doc.Load(parFiles[i]))
This page took 0.079697 seconds and 4 git commands to generate.