diff --git a/cvpcb/cvframe.cpp b/cvpcb/cvframe.cpp index 765e6a141b..d68f6b9184 100644 --- a/cvpcb/cvframe.cpp +++ b/cvpcb/cvframe.cpp @@ -80,7 +80,6 @@ BEGIN_EVENT_TABLE( CVPCB_MAINFRAME, KIWAY_PLAYER ) EVT_TOOL( ID_CVPCB_GOTO_PREVIOUSNA, CVPCB_MAINFRAME::ToPreviousNA ) EVT_TOOL( ID_CVPCB_DEL_ASSOCIATIONS, CVPCB_MAINFRAME::DelAssociations ) EVT_TOOL( ID_CVPCB_AUTO_ASSOCIE, CVPCB_MAINFRAME::AutomaticFootprintMatching ) - EVT_TOOL( ID_PCB_DISPLAY_FOOTPRINT_DOC, CVPCB_MAINFRAME::DisplayDocFile ) EVT_TOOL( ID_CVPCB_FOOTPRINT_DISPLAY_FILTERED_LIST, CVPCB_MAINFRAME::OnSelectFilteringFootprint ) EVT_TOOL( ID_CVPCB_FOOTPRINT_DISPLAY_PIN_FILTERED_LIST, @@ -500,12 +499,6 @@ void CVPCB_MAINFRAME::DisplayModule( wxCommandEvent& event ) } -void CVPCB_MAINFRAME::DisplayDocFile( wxCommandEvent& event ) -{ - GetAssociatedDocument( this, m_DocModulesFileName, &Kiface().KifaceSearch() ); -} - - void CVPCB_MAINFRAME::OnSelectComponent( wxListEvent& event ) { if( m_skipComponentSelect ) diff --git a/cvpcb/cvpcb_mainframe.h b/cvpcb/cvpcb_mainframe.h index 7ea861269e..490f49ceca 100644 --- a/cvpcb/cvpcb_mainframe.h +++ b/cvpcb/cvpcb_mainframe.h @@ -164,8 +164,6 @@ public: */ void AutomaticFootprintMatching( wxCommandEvent& event ); - void DisplayDocFile( wxCommandEvent& event ); - /** * Function OnSelectFilteringFootprint * is the command event handler for enabling and disabling footprint filtering. diff --git a/cvpcb/menubar.cpp b/cvpcb/menubar.cpp index 7be428cf1d..422ca87315 100644 --- a/cvpcb/menubar.cpp +++ b/cvpcb/menubar.cpp @@ -2,7 +2,7 @@ * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2004 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com - * Copyright (C) 2004-2011 KiCad Developers, see change_log.txt for contributors. + * Copyright (C) 2004-2016 KiCad Developers, see change_log.txt for contributors. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -91,9 +91,9 @@ void CVPCB_MAINFRAME::ReCreateMenuBar() KiBitmap( editor_xpm ) ); AddMenuItem( preferencesMenu, ID_CVPCB_EQUFILES_LIST_EDIT, - _( "Edit &Equ Files List" ), - _( "Setup equ files list (.equ files)\n" - "They are files which give the footprint name from the component value"), + _( "&Edit Footprint Association File" ), + _( "Modify footprint association file (.equ). This is the file which " + "assigns the footprint name by the component value" ), KiBitmap( library_table_xpm ) ); // Language submenu diff --git a/cvpcb/tool_cvpcb.cpp b/cvpcb/tool_cvpcb.cpp index b53f9c9bd2..222059f900 100644 --- a/cvpcb/tool_cvpcb.cpp +++ b/cvpcb/tool_cvpcb.cpp @@ -2,8 +2,8 @@ * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2013 Jean-Pierre Charras, jp.charras at wanadoo.fr - * Copyright (C) 2011 Wayne Stambaugh - * Copyright (C) 2007-2013 KiCad Developers, see AUTHORS.txt for contributors. + * Copyright (C) 2011-2016 Wayne Stambaugh + * Copyright (C) 2007-2016 KiCad Developers, see AUTHORS.txt for contributors. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -79,11 +79,6 @@ void CVPCB_MAINFRAME::ReCreateHToolbar() KiBitmap( delete_association_xpm ), _( "Delete all associations (links)" ) ); - m_mainToolBar->AddSeparator(); - m_mainToolBar->AddTool( ID_PCB_DISPLAY_FOOTPRINT_DOC, wxEmptyString, - KiBitmap( datasheet_xpm ), - _( "Display footprint documentation" ) ); - m_mainToolBar->AddSeparator(); m_mainToolBar->AddTool( ID_CVPCB_FOOTPRINT_DISPLAY_FILTERED_LIST, KiBitmap( module_filtered_list_xpm ), diff --git a/include/id.h b/include/id.h index c864171a72..b3bf1ea9c3 100644 --- a/include/id.h +++ b/include/id.h @@ -2,8 +2,8 @@ * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2009 Jean-Pierre Charras, jp.charras at wanadoo.fr - * Copyright (C) 2009 Wayne Stambaugh - * Copyright (C) 1992-2011 KiCad Developers, see AUTHORS.txt for contributors. + * Copyright (C) 2009-2016 Wayne Stambaugh + * Copyright (C) 1992-2016 KiCad Developers, see AUTHORS.txt for contributors. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -255,9 +255,6 @@ enum main_id ID_EDA_SOCKET_EVENT_SERV, ID_EDA_SOCKET_EVENT, - // Command IDs common to Pcbnew and CvPcb. - ID_PCB_DISPLAY_FOOTPRINT_DOC, - // Common to all ID_TB_OPTIONS_SELECT_UNIT_MM, ID_TB_OPTIONS_SELECT_UNIT_INCH,