Fix a duplicate definition of the TOOL_DISPATCHER.
Fixes https://gitlab.com/kicad/code/kicad/issues/4110
This commit is contained in:
parent
88c4254bb5
commit
42a876d963
|
@ -90,8 +90,7 @@ EDA_3D_VIEWER::EDA_3D_VIEWER( KIWAY *aKiway, PCB_BASE_FRAME *aParent, const wxSt
|
|||
m_mainToolBar( nullptr ),
|
||||
m_canvas( nullptr ),
|
||||
m_currentCamera( m_trackBallCamera ),
|
||||
m_trackBallCamera( RANGE_SCALE_3D ),
|
||||
m_toolDispatcher( nullptr )
|
||||
m_trackBallCamera( RANGE_SCALE_3D )
|
||||
{
|
||||
wxLogTrace( m_logTrace, "EDA_3D_VIEWER::EDA_3D_VIEWER %s", aTitle );
|
||||
|
||||
|
|
|
@ -212,8 +212,6 @@ private:
|
|||
CCAMERA& m_currentCamera;
|
||||
CTRACK_BALL m_trackBallCamera;
|
||||
|
||||
TOOL_DISPATCHER* m_toolDispatcher;
|
||||
|
||||
bool m_disable_ray_tracing;
|
||||
|
||||
/**
|
||||
|
|
|
@ -93,8 +93,6 @@ protected:
|
|||
// to screens
|
||||
bool m_PolarCoords; // For those frames that support polar coordinates
|
||||
|
||||
TOOL_DISPATCHER* m_toolDispatcher;
|
||||
|
||||
bool m_showBorderAndTitleBlock; // Show the worksheet (border and title block).
|
||||
long m_firstRunDialogSetting; // Show first run dialog on startup
|
||||
|
||||
|
|
Loading…
Reference in New Issue