Closes bug 1168753.
Depending on build options seems that wx uses different types for size() so the Format string was not always correct. Put a fat warning in a comment too.
This commit is contained in:
parent
088832b8f6
commit
2cad7a52ad
|
@ -146,7 +146,11 @@ void SCH_EDIT_FRAME::BuildNetListBase()
|
||||||
if( g_NetObjectslist.size() == 0 )
|
if( g_NetObjectslist.size() == 0 )
|
||||||
return; // no objects
|
return; // no objects
|
||||||
|
|
||||||
activity += wxString::Format( _( " net count = %u" ), g_NetObjectslist.size() );
|
/* Here wx gives its best... depending on the build option size can
|
||||||
|
be unsigned int or unsigned long (probably even size_t, but it doesn't
|
||||||
|
support the %z specifier). So the cast is for platform compability */
|
||||||
|
activity += wxString::Format( _( " net count = %lu" ),
|
||||||
|
(unsigned long)( g_NetObjectslist.size() ) );
|
||||||
SetStatusText( activity );
|
SetStatusText( activity );
|
||||||
|
|
||||||
/* Sort objects by Sheet */
|
/* Sort objects by Sheet */
|
||||||
|
|
Loading…
Reference in New Issue