Commit 62058240 authored by CHARRAS's avatar CHARRAS
Browse files

change erronous word Hothey to Hotkey in 2 function names

parent 7e79113c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -594,7 +594,7 @@ wxString ReturnHotkeyConfigFilePath( int choice )


/***************************************/
void AddHotheyConfigMenu( wxMenu* menu )
void AddHotkeyConfigMenu( wxMenu* menu )
/***************************************/

/* add hotkey config options to a menu
@@ -647,7 +647,7 @@ void AddHotheyConfigMenu( wxMenu* menu )


/************************************************************************/
void  HandleHotheyConfigMenuSelection( WinEDA_DrawFrame * frame, int id )
void  HandleHotkeyConfigMenuSelection( WinEDA_DrawFrame * frame, int id )
/************************************************************************/
/* called on hotkey file location selecton menu
*  @param frame = current WinEDA_DrawFrame
+2 −2
Original line number Diff line number Diff line
@@ -100,7 +100,7 @@ wxString FullFileName;

		case ID_PREFERENCES_HOTKEY_PATH_IS_HOME:
		case ID_PREFERENCES_HOTKEY_PATH_IS_KICAD:
			HandleHotheyConfigMenuSelection( this, id );
			HandleHotkeyConfigMenuSelection( this, id );
			break;

		default:
+1 −1
Original line number Diff line number Diff line
@@ -165,7 +165,7 @@ wxString msg;
		configmenu->Append(item);

		configmenu->AppendSeparator();
		AddHotheyConfigMenu( configmenu );
		AddHotkeyConfigMenu( configmenu );

		// Menu Help:
		wxMenu *helpMenu = new wxMenu;
+1 −1
Original line number Diff line number Diff line
@@ -69,7 +69,7 @@ void WinEDA_GerberFrame::Process_Config( wxCommandEvent& event )

    case ID_PREFERENCES_HOTKEY_PATH_IS_HOME:
    case ID_PREFERENCES_HOTKEY_PATH_IS_KICAD:
 		HandleHotheyConfigMenuSelection( this, id );
 		HandleHotkeyConfigMenuSelection( this, id );
        break;

    default:
+1 −1
Original line number Diff line number Diff line
@@ -124,7 +124,7 @@ void WinEDA_GerberFrame::ReCreateMenuBar( void )
                                _( "Save application preferences" ), save_setup_xpm );

        configmenu->AppendSeparator();
		AddHotheyConfigMenu( configmenu );
		AddHotkeyConfigMenu( configmenu );


// Menu drill ( generation fichiers percage)
Loading