From bb286d52b135e0eb3aea788b236dc93e3916a80e Mon Sep 17 00:00:00 2001 From: Simon Wells Date: Thu, 24 Sep 2015 06:43:40 +1200 Subject: [PATCH] Created handlers for getting started menu items in gerbview and pl_editor --- gerbview/events_called_functions.cpp | 1 + pagelayout_editor/events_functions.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/gerbview/events_called_functions.cpp b/gerbview/events_called_functions.cpp index c06911658b..c5a556654c 100644 --- a/gerbview/events_called_functions.cpp +++ b/gerbview/events_called_functions.cpp @@ -88,6 +88,7 @@ BEGIN_EVENT_TABLE( GERBVIEW_FRAME, EDA_DRAW_FRAME ) // Menu Help EVT_MENU( wxID_HELP, EDA_DRAW_FRAME::GetKicadHelp ) + EVT_MENU( wxID_INDEX, EDA_DRAW_FRAME::GetKicadHelp ) EVT_MENU( wxID_ABOUT, EDA_DRAW_FRAME::GetKicadAbout ) EVT_TOOL( wxID_UNDO, GERBVIEW_FRAME::Process_Special_Functions ) diff --git a/pagelayout_editor/events_functions.cpp b/pagelayout_editor/events_functions.cpp index 5fb1bb2c73..1c6ec10e20 100644 --- a/pagelayout_editor/events_functions.cpp +++ b/pagelayout_editor/events_functions.cpp @@ -78,6 +78,7 @@ BEGIN_EVENT_TABLE( PL_EDITOR_FRAME, EDA_DRAW_FRAME ) // Menu Help EVT_MENU( wxID_HELP, EDA_DRAW_FRAME::GetKicadHelp ) + EVT_MENU( wxID_INDEX, EDA_DRAW_FRAME::GetKicadHelp ) EVT_MENU( wxID_ABOUT, EDA_DRAW_FRAME::GetKicadAbout ) EVT_TOOL( wxID_CUT, PL_EDITOR_FRAME::Process_Special_Functions )