r5286 - trunk/gta02-core/kicad-patches

werner at docs.openmoko.org werner at docs.openmoko.org
Fri Jul 3 18:10:21 CEST 2009


Author: werner
Date: 2009-07-03 18:10:20 +0200 (Fri, 03 Jul 2009)
New Revision: 5286

Modified:
   trunk/gta02-core/kicad-patches/erc-exceptions.patch
Log:
Tentative fix for unicode problem.



Modified: trunk/gta02-core/kicad-patches/erc-exceptions.patch
===================================================================
--- trunk/gta02-core/kicad-patches/erc-exceptions.patch	2009-07-03 13:24:22 UTC (rev 5285)
+++ trunk/gta02-core/kicad-patches/erc-exceptions.patch	2009-07-03 16:10:20 UTC (rev 5286)
@@ -29,7 +29,7 @@
 Index: kicad/eeschema/erc.cpp
 ===================================================================
 --- kicad.orig/eeschema/erc.cpp	2009-07-03 10:05:43.000000000 -0300
-+++ kicad/eeschema/erc.cpp	2009-07-03 10:19:15.000000000 -0300
++++ kicad/eeschema/erc.cpp	2009-07-03 12:50:34.000000000 -0300
 @@ -267,6 +267,188 @@
  }
  
@@ -245,7 +245,7 @@
 +    if( g_EESchemaVar.NbExceptionErc >= 0)
 +	num.Printf( wxT( "%d (%d exception%s)" ), g_EESchemaVar.NbErrorErc,
 +	  g_EESchemaVar.NbExceptionErc,
-+	  g_EESchemaVar.NbExceptionErc == 1 ? "" : "s" );
++	  g_EESchemaVar.NbExceptionErc == 1 ? wxT( "" ) : wxT( "s" ) );
 +    else
 +	num.Printf( wxT( "%d" ), g_EESchemaVar.NbErrorErc );
      m_TotalErrCount->SetLabel( num );




More information about the commitlog mailing list