Commit 2cad7a52 authored by Lorenzo Marcantonio's avatar Lorenzo Marcantonio

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.
parent 088832b8
......@@ -146,7 +146,11 @@ void SCH_EDIT_FRAME::BuildNetListBase()
if( g_NetObjectslist.size() == 0 )
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 );
/* Sort objects by Sheet */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment