Browse Source

2 very minor fixes.

pull/4/head
jean-pierre charras 11 years ago
parent
commit
79af0c454d
  1. 2
      3d-viewer/3d_draw.cpp
  2. 2
      pcbnew/scripting/board.i

2
3d-viewer/3d_draw.cpp

@ -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

2
pcbnew/scripting/board.i

@ -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
{

Loading…
Cancel
Save