From 5d306bb244a74e7f1716cd781e9da0660b0fb9ed Mon Sep 17 00:00:00 2001 From: Marco Ciampa Date: Thu, 30 Oct 2014 11:37:46 -0400 Subject: [PATCH] Rename instances of module to footprint for consistency. --- pcbnew/autorouter/auto_place_footprints.cpp | 2 +- pcbnew/autorouter/spread_footprints.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pcbnew/autorouter/auto_place_footprints.cpp b/pcbnew/autorouter/auto_place_footprints.cpp index 2d20b688eb..c72b90af7a 100644 --- a/pcbnew/autorouter/auto_place_footprints.cpp +++ b/pcbnew/autorouter/auto_place_footprints.cpp @@ -278,7 +278,7 @@ void PCB_EDIT_FRAME::AutoPlaceModule( MODULE* Module, int place_mode, wxDC* DC ) while( ( Module = PickModule( this, DC ) ) != NULL ) { // Display some info about activity, module placement can take a while: - msg.Printf( _( "Place module %d of %d" ), cnt, moduleCount ); + msg.Printf( _( "Place footprint %d of %d" ), cnt, moduleCount ); SetStatusText( msg ); double initialOrient = Module->GetOrientation(); diff --git a/pcbnew/autorouter/spread_footprints.cpp b/pcbnew/autorouter/spread_footprints.cpp index 42b0ea47c7..69704529b5 100644 --- a/pcbnew/autorouter/spread_footprints.cpp +++ b/pcbnew/autorouter/spread_footprints.cpp @@ -174,7 +174,7 @@ void PCB_EDIT_FRAME::SpreadFootprints( bool aFootprintsOutsideBoardOnly ) if( aFootprintsOutsideBoardOnly && !edgesExist ) { DisplayError( this, - _( "Could not automatically place modules. No board outlines detected." ) ); + _( "Could not automatically place footprints. No board outlines detected." ) ); return; }