Commit 79af0c45 authored by jean-pierre charras's avatar jean-pierre charras

2 very minor fixes.

parent 19347b12
...@@ -608,7 +608,7 @@ void EDA_3D_CANVAS::Redraw() ...@@ -608,7 +608,7 @@ void EDA_3D_CANVAS::Redraw()
// Calculation time in seconds // Calculation time in seconds
double calculation_time = (double)( GetRunningMicroSecs() - strtime) / 1e6; 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 ) ); calculation_time ) );
} }
else else
......
...@@ -70,7 +70,7 @@ ...@@ -70,7 +70,7 @@
// std::vector templates // std::vector templates
%template(VIA_DIMENSION_Vector) std::vector<VIA_DIMENSION>; %template(VIA_DIMENSION_Vector) std::vector<VIA_DIMENSION>;
%template (RATSNET_Vector) std::vector<RATSNEST_ITEM>; %template (RATSNEST_Vector) std::vector<RATSNEST_ITEM>;
%extend BOARD %extend BOARD
{ {
......
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