2 very minor fixes.

This commit is contained in:
jean-pierre charras 2015-04-14 17:57:07 +02:00
parent 19347b1243
commit 79af0c454d
2 changed files with 2 additions and 2 deletions

View File

@ -608,7 +608,7 @@ void EDA_3D_CANVAS::Redraw()
// Calculation time in seconds
double calculation_time = (double)( GetRunningMicroSecs() - strtime) / 1e6;
activityReporter.Report( wxString::Format( _( "Build time %3f s" ),
activityReporter.Report( wxString::Format( _( "Build time %.3f s" ),
calculation_time ) );
}
else

View File

@ -70,7 +70,7 @@
// std::vector templates
%template(VIA_DIMENSION_Vector) std::vector<VIA_DIMENSION>;
%template (RATSNET_Vector) std::vector<RATSNEST_ITEM>;
%template (RATSNEST_Vector) std::vector<RATSNEST_ITEM>;
%extend BOARD
{