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

index b05b3f90de7e102af9c97548d43bb8261c036257..ceec812f438851a4eaa3cab6fa75637db48d8b7b 100644 (file)
  
      if (!ok || recPos < len || size != lastread) {
 -        wxLogWarning(_("invalid data in extended tar header"));
-+        wxLogWarning("%s", _("invalid data in extended tar header"));
++        wxLogWarning(wxT("%s"), _("invalid data in extended tar header"));
          return false;
      }
  
      if (m_DiskNumber != 0 || m_StartDisk != 0 ||
              m_EntriesHere != m_TotalEntries)
 -        wxLogWarning(_("assuming this is a multi-part zip concatenated"));
-+        wxLogWarning("%s", _("assuming this is a multi-part zip concatenated"));
++        wxLogWarning(wxT("%s"), _("assuming this is a multi-part zip concatenated"));
  
      return true;
  }
          {
              // notify the programmer that this doesn't work here
 -            wxLogWarning(_("Thread priority setting is ignored."));
-+            wxLogWarning("%s", _("Thread priority setting is ignored."));
++            wxLogWarning(wxT("%s"), _("Thread priority setting is ignored."));
          }
          //else: we have default priority, so don't complain
  
    if (name.empty())
    {
 -    wxLogWarning( _("Trying to solve a NULL hostname: giving up") );
-+    wxLogWarning("%s", _("Trying to solve a NULL hostname: giving up") );
++    wxLogWarning(wxT("%s"), _("Trying to solve a NULL hostname: giving up") );
      return false;
    }
    m_origHostname = name;
    if (sig != 0xfeeddead)
    {
 -    wxLogWarning(_("wxSocket: invalid signature in ReadMsg."));
-+    wxLogWarning("%s", _("wxSocket: invalid signature in ReadMsg."));
++    wxLogWarning(wxT("%s"), _("wxSocket: invalid signature in ReadMsg."));
      goto exit;
    }
  
    if (sig != 0xdeadfeed)
    {
 -    wxLogWarning(_("wxSocket: invalid signature in ReadMsg."));
-+    wxLogWarning("%s", _("wxSocket: invalid signature in ReadMsg."));
++    wxLogWarning(wxT("%s"), _("wxSocket: invalid signature in ReadMsg."));
      goto exit;
    }
  
      case GSOCK_LOST:       flag = GSOCK_LOST_FLAG; break;
      default:
 -      wxLogWarning(_("wxSocket: unknown event!."));
-+      wxLogWarning("%s", _("wxSocket: unknown event!."));
++      wxLogWarning(wxT("%s"), _("wxSocket: unknown event!."));
        return;
    }
  
          // see comment in WriteText() as to why we must warn the user about
          // this
 -        wxLogWarning(_("Failed to set text in the text control."));
-+        wxLogWarning("%s", _("Failed to set text in the text control."));
++        wxLogWarning(wxT("%s"), _("Failed to set text in the text control."));
          return;
      }
  
          // serious problem (e.g. imagine the document edited by user being
          // empty instead of containing the correct text)
 -        wxLogWarning(_("Failed to insert text in the control."));
-+        wxLogWarning("%s", _("Failed to insert text in the control."));
++        wxLogWarning(wxT("%s"), _("Failed to insert text in the control."));
          return;
      }
  
          }
  
 -        wxLogWarning(_("No handler found for image type."));
-+        wxLogWarning("%s", _("No handler found for image type."));
++        wxLogWarning(wxT("%s"), _("No handler found for image type."));
          return 0;
      }
  
          }
  
 -        wxLogWarning( _("No handler found for image type.") );
-+        wxLogWarning("%s", _("No handler found for image type.") );
++        wxLogWarning(wxT("%s"), _("No handler found for image type.") );
          return false;
      }
  
      wxPNGInfoStruct *info = png_ptr ? WX_PNG_INFO(png_ptr) : NULL;
      if ( !info || info->verbose )
 -        wxLogWarning( wxString::FromAscii(message) );
-+        wxLogWarning("%s", message );
++        wxLogWarning(wxT("%s"), message );
  }
  
  // from pngerror.c
      if ( !h.FindFirstUnusedColour(&rMask, &gMask, &bMask) )
      {
 -        wxLogWarning(_("Too many colours in PNG, the image may be slightly blurred."));
-+        wxLogWarning("%s", _("Too many colours in PNG, the image may be slightly blurred."));
++        wxLogWarning(wxT("%s"), _("Too many colours in PNG, the image may be slightly blurred."));
  
          // use a fixed mask colour and we'll fudge
          // the real pixels with this colour (see
          if ( validator && !validator->TransferToWindow() )
          {
 -            wxLogWarning(_("Could not transfer data to window"));
-+            wxLogWarning("%s", _("Could not transfer data to window"));
++            wxLogWarning(wxT("%s"), _("Could not transfer data to window"));
  #if wxUSE_LOG
              wxLog::FlushActive();
  #endif // wxUSE_LOG
      {
          right=wxString(right.Mid(index+1));
 -        wxLogWarning(_("Link contained '//', converted to absolute link."));
-+        wxLogWarning("%s", _("Link contained '//', converted to absolute link."));
++        wxLogWarning(wxT("%s"), _("Link contained '//', converted to absolute link."));
      }
  
      wxFileName leftFilename = wxFileSystem::URLToFileName(left);
                      m_Printer = new wxHtmlEasyPrinting(_("Help Printing"), this);
                  if (!m_HtmlWin->GetOpenedPage())
 -                    wxLogWarning(_("Cannot print empty page."));
-+                    wxLogWarning("%s", _("Cannot print empty page."));
++                    wxLogWarning(wxT("%s"), _("Cannot print empty page."));
                  else
                      m_Printer->PrintFile(m_HtmlWin->GetOpenedPage());
              }
          )
      {
 -        wxLogWarning(_("Warning: attempt to remove HTML tag handler from empty stack."));
-+        wxLogWarning("%s", _("Warning: attempt to remove HTML tag handler from empty stack."));
++        wxLogWarning(wxT("%s"), _("Warning: attempt to remove HTML tag handler from empty stack."));
          return;
      }
      m_HandlersHash = *((wxHashTable*) first->GetData());
This page took 0.217466 seconds and 4 git commands to generate.