Loading common/hotkeys_basic.cpp +2 −2 Original line number Original line Diff line number Diff line Loading @@ -367,7 +367,7 @@ int WinEDA_BasicFrame::WriteHotkeyConfigFile( const wxString& Ext = DEFAULT_HOTKEY_FILENAME_EXT; Ext = DEFAULT_HOTKEY_FILENAME_EXT; Mask = wxT( "*" ) + Ext; Mask = wxT( "*" ) + Ext; Path = ReturnHotkeyConfigFilePath( g_ConfigFileLocationChoice ); Path = ReturnHotkeyConfigFilePath( g_ConfigFileLocationChoice ); FullFilename = EDA_FileSelector( _( "Hotkey configuration file:" ), FullFilename = EDA_FileSelector( _( "Save Hotkey Configuration File:" ), Path, /* Chemin par defaut */ Path, /* Chemin par defaut */ FullFilename, /* nom fichier par defaut */ FullFilename, /* nom fichier par defaut */ Ext, /* extension par defaut */ Ext, /* extension par defaut */ Loading Loading @@ -485,7 +485,7 @@ int WinEDA_BasicFrame::ReadHotkeyConfigFile( const wxString& Ext = DEFAULT_HOTKEY_FILENAME_EXT; Ext = DEFAULT_HOTKEY_FILENAME_EXT; Mask = wxT( "*" ) + Ext; Mask = wxT( "*" ) + Ext; Path = ReturnHotkeyConfigFilePath( g_ConfigFileLocationChoice ); Path = ReturnHotkeyConfigFilePath( g_ConfigFileLocationChoice ); FullFilename = EDA_FileSelector( _( "Hotkey configuration file:" ), FullFilename = EDA_FileSelector( _( "Open Hotkey Configuration File:" ), Path, /* Chemin par defaut */ Path, /* Chemin par defaut */ FullFilename, /* nom fichier par defaut */ FullFilename, /* nom fichier par defaut */ Ext, /* extension par defaut */ Ext, /* extension par defaut */ Loading cvpcb/autosel.cpp +7 −7 Original line number Original line Diff line number Diff line Loading @@ -53,7 +53,7 @@ char Line[1024]; FILE *fichierstf ; /* sert en lecture des differents fichiers *.STF */ FILE *fichierstf ; /* sert en lecture des differents fichiers *.STF */ AUTOMODULE * ItemModule,* NextMod; AUTOMODULE * ItemModule,* NextMod; AUTOMODULE * BaseListeMod = NULL; AUTOMODULE * BaseListeMod = NULL; STORECMP * Componant; STORECMP * Component; int nb_correspondances = 0; int nb_correspondances = 0; Loading Loading @@ -110,12 +110,12 @@ int nb_correspondances = 0; frame->SetStatusText(msg, 0); frame->SetStatusText(msg, 0); } } Componant = g_BaseListeCmp; Component = g_BaseListeCmp; for ( ii = 0; Componant != NULL; Componant = Componant->Pnext, ii++ ) for ( ii = 0; Component != NULL; Component = Component->Pnext, ii++ ) { { frame->m_ListCmp->SetSelection(ii,TRUE); frame->m_ListCmp->SetSelection(ii,TRUE); if( Componant->m_Module.IsEmpty() ) if( Component->m_Module.IsEmpty() ) auto_select(frame, Componant, BaseListeMod); auto_select(frame, Component, BaseListeMod); } } /* Liberation memoire */ /* Liberation memoire */ Loading cvpcb/cvframe.cpp +2 −2 Original line number Original line Diff line number Diff line Loading @@ -256,7 +256,7 @@ void WinEDA_CvpcbFrame::OnCloseWindow( wxCloseEvent& Event ) } } FreeMemoryModules(); FreeMemoryModules(); FreeMemoryComponants(); FreeMemoryComponents(); modified = 0; modified = 0; SaveSettings(); SaveSettings(); Loading Loading @@ -376,7 +376,7 @@ void WinEDA_CvpcbFrame::DelAssociations( wxCommandEvent& event ) composants_non_affectes = nbcomp; composants_non_affectes = nbcomp; } } Line.Printf( _( "Componants: %d (free: %d)" ), nbcomp, Line.Printf( _( "Components: %d (free: %d)" ), nbcomp, composants_non_affectes ); composants_non_affectes ); SetStatusText( Line, 1 ); SetStatusText( Line, 1 ); } } Loading cvpcb/init.cpp +1 −1 Original line number Original line Diff line number Diff line Loading @@ -125,7 +125,7 @@ void WinEDA_CvpcbFrame::ReadNetListe() if( g_BaseListeCmp ) if( g_BaseListeCmp ) m_ListCmp->SetSelection( 0, TRUE ); m_ListCmp->SetSelection( 0, TRUE ); msg.Printf( _( "Componants: %d (free: %d)" ), nbcomp, msg.Printf( _( "Components: %d (free: %d)" ), nbcomp, composants_non_affectes ); composants_non_affectes ); SetStatusText( msg, 1 ); SetStatusText( msg, 1 ); Loading cvpcb/memoire.cpp +1 −1 Original line number Original line Diff line number Diff line Loading @@ -34,7 +34,7 @@ STOREMOD * Module, * NextMod; } } /***********************************/ /***********************************/ void FreeMemoryComponants() void FreeMemoryComponents() /***********************************/ /***********************************/ /* Routine de liberation memoire de la liste des composants /* Routine de liberation memoire de la liste des composants Loading Loading
common/hotkeys_basic.cpp +2 −2 Original line number Original line Diff line number Diff line Loading @@ -367,7 +367,7 @@ int WinEDA_BasicFrame::WriteHotkeyConfigFile( const wxString& Ext = DEFAULT_HOTKEY_FILENAME_EXT; Ext = DEFAULT_HOTKEY_FILENAME_EXT; Mask = wxT( "*" ) + Ext; Mask = wxT( "*" ) + Ext; Path = ReturnHotkeyConfigFilePath( g_ConfigFileLocationChoice ); Path = ReturnHotkeyConfigFilePath( g_ConfigFileLocationChoice ); FullFilename = EDA_FileSelector( _( "Hotkey configuration file:" ), FullFilename = EDA_FileSelector( _( "Save Hotkey Configuration File:" ), Path, /* Chemin par defaut */ Path, /* Chemin par defaut */ FullFilename, /* nom fichier par defaut */ FullFilename, /* nom fichier par defaut */ Ext, /* extension par defaut */ Ext, /* extension par defaut */ Loading Loading @@ -485,7 +485,7 @@ int WinEDA_BasicFrame::ReadHotkeyConfigFile( const wxString& Ext = DEFAULT_HOTKEY_FILENAME_EXT; Ext = DEFAULT_HOTKEY_FILENAME_EXT; Mask = wxT( "*" ) + Ext; Mask = wxT( "*" ) + Ext; Path = ReturnHotkeyConfigFilePath( g_ConfigFileLocationChoice ); Path = ReturnHotkeyConfigFilePath( g_ConfigFileLocationChoice ); FullFilename = EDA_FileSelector( _( "Hotkey configuration file:" ), FullFilename = EDA_FileSelector( _( "Open Hotkey Configuration File:" ), Path, /* Chemin par defaut */ Path, /* Chemin par defaut */ FullFilename, /* nom fichier par defaut */ FullFilename, /* nom fichier par defaut */ Ext, /* extension par defaut */ Ext, /* extension par defaut */ Loading
cvpcb/autosel.cpp +7 −7 Original line number Original line Diff line number Diff line Loading @@ -53,7 +53,7 @@ char Line[1024]; FILE *fichierstf ; /* sert en lecture des differents fichiers *.STF */ FILE *fichierstf ; /* sert en lecture des differents fichiers *.STF */ AUTOMODULE * ItemModule,* NextMod; AUTOMODULE * ItemModule,* NextMod; AUTOMODULE * BaseListeMod = NULL; AUTOMODULE * BaseListeMod = NULL; STORECMP * Componant; STORECMP * Component; int nb_correspondances = 0; int nb_correspondances = 0; Loading Loading @@ -110,12 +110,12 @@ int nb_correspondances = 0; frame->SetStatusText(msg, 0); frame->SetStatusText(msg, 0); } } Componant = g_BaseListeCmp; Component = g_BaseListeCmp; for ( ii = 0; Componant != NULL; Componant = Componant->Pnext, ii++ ) for ( ii = 0; Component != NULL; Component = Component->Pnext, ii++ ) { { frame->m_ListCmp->SetSelection(ii,TRUE); frame->m_ListCmp->SetSelection(ii,TRUE); if( Componant->m_Module.IsEmpty() ) if( Component->m_Module.IsEmpty() ) auto_select(frame, Componant, BaseListeMod); auto_select(frame, Component, BaseListeMod); } } /* Liberation memoire */ /* Liberation memoire */ Loading
cvpcb/cvframe.cpp +2 −2 Original line number Original line Diff line number Diff line Loading @@ -256,7 +256,7 @@ void WinEDA_CvpcbFrame::OnCloseWindow( wxCloseEvent& Event ) } } FreeMemoryModules(); FreeMemoryModules(); FreeMemoryComponants(); FreeMemoryComponents(); modified = 0; modified = 0; SaveSettings(); SaveSettings(); Loading Loading @@ -376,7 +376,7 @@ void WinEDA_CvpcbFrame::DelAssociations( wxCommandEvent& event ) composants_non_affectes = nbcomp; composants_non_affectes = nbcomp; } } Line.Printf( _( "Componants: %d (free: %d)" ), nbcomp, Line.Printf( _( "Components: %d (free: %d)" ), nbcomp, composants_non_affectes ); composants_non_affectes ); SetStatusText( Line, 1 ); SetStatusText( Line, 1 ); } } Loading
cvpcb/init.cpp +1 −1 Original line number Original line Diff line number Diff line Loading @@ -125,7 +125,7 @@ void WinEDA_CvpcbFrame::ReadNetListe() if( g_BaseListeCmp ) if( g_BaseListeCmp ) m_ListCmp->SetSelection( 0, TRUE ); m_ListCmp->SetSelection( 0, TRUE ); msg.Printf( _( "Componants: %d (free: %d)" ), nbcomp, msg.Printf( _( "Components: %d (free: %d)" ), nbcomp, composants_non_affectes ); composants_non_affectes ); SetStatusText( msg, 1 ); SetStatusText( msg, 1 ); Loading
cvpcb/memoire.cpp +1 −1 Original line number Original line Diff line number Diff line Loading @@ -34,7 +34,7 @@ STOREMOD * Module, * NextMod; } } /***********************************/ /***********************************/ void FreeMemoryComponants() void FreeMemoryComponents() /***********************************/ /***********************************/ /* Routine de liberation memoire de la liste des composants /* Routine de liberation memoire de la liste des composants Loading