Code hygiene.
This commit is contained in:
parent
19aba615c2
commit
18ebced8f4
|
@ -529,7 +529,7 @@ void TOOL_MANAGER::dispatchInternal( const TOOL_EVENT& aEvent )
|
|||
}
|
||||
|
||||
// the tool state handler is waiting for events (i.e. called Wait() method)
|
||||
if( st->pendingWait )
|
||||
if( st && st->pendingWait )
|
||||
{
|
||||
if( st->waitEvents.Matches( aEvent ) )
|
||||
{
|
||||
|
|
|
@ -524,6 +524,8 @@ int SCH_DRAWING_TOOLS::SingleClickPlace( const TOOL_EVENT& aEvent )
|
|||
case SCH_BUS_BUS_ENTRY_T:
|
||||
item = new SCH_BUS_BUS_ENTRY( cursorPos, g_lastBusEntryShape );
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -665,6 +667,8 @@ int SCH_DRAWING_TOOLS::TwoClickPlace( const TOOL_EVENT& aEvent )
|
|||
item = m_frame->CreateSheetPin( sheet, label );
|
||||
break;
|
||||
}
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
// Restore cursor after dialog
|
||||
|
|
Loading…
Reference in New Issue