Fix a compil issue in mocks.cpp.
This commit is contained in:
parent
08295c795b
commit
167e430fd9
|
@ -21,7 +21,6 @@
|
|||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#include <pgm_base.h>
|
||||
#include <kiface_base.h>
|
||||
#include <confirm.h>
|
||||
#include <pcb_edit_frame.h>
|
||||
|
@ -38,6 +37,7 @@
|
|||
#include <router/router_tool.h>
|
||||
#include <dialog_find.h>
|
||||
#include <dialog_filter_selection.h>
|
||||
#include <zone_filler.h>
|
||||
|
||||
FP_LIB_TABLE GFootprintTable;
|
||||
|
||||
|
@ -397,8 +397,6 @@ void PCB_SELECTION_TOOL::GuessSelectionCandidates( GENERAL_COLLECTOR& aCollector
|
|||
}
|
||||
|
||||
|
||||
|
||||
|
||||
int PCB_SELECTION_TOOL::updateSelection( const TOOL_EVENT& aEvent )
|
||||
{
|
||||
return 0;
|
||||
|
@ -460,6 +458,11 @@ bool PCB_TOOL_BASE::Is45Limited() const
|
|||
}
|
||||
|
||||
|
||||
ZONE_FILLER::~ZONE_FILLER()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
ZONE_FILLER_TOOL::ZONE_FILLER_TOOL() :
|
||||
PCB_TOOL_BASE( "pcbnew.ZoneFiller" ),
|
||||
m_fillInProgress( false )
|
||||
|
|
Loading…
Reference in New Issue