From 70b39d27ae61e60f94bf1189562229079e4fd2a6 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Sat, 28 Jan 2017 20:33:02 +0100 Subject: [PATCH] Fix a compil issue due to incorrect conversion. --- pcbnew/footprint_wizard_frame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/footprint_wizard_frame.cpp b/pcbnew/footprint_wizard_frame.cpp index 0c1696addb..7bc029d3cf 100644 --- a/pcbnew/footprint_wizard_frame.cpp +++ b/pcbnew/footprint_wizard_frame.cpp @@ -729,7 +729,7 @@ void FOOTPRINT_WIZARD_FRAME::PythonPluginsReload() // call PCB_EDIT_FRAME::PythonPluginsReload() if the board editor // is running PCB_EDIT_FRAME* brd_frame = - static_cast( Kiway().Player( FRAME_PCB, false ) ); + static_cast( Kiway().Player( FRAME_PCB, false ) ); if( brd_frame ) brd_frame->PythonPluginsReload();