pcbnew, cvpcb removed bug: forgotten paths when adding lib files
This commit is contained in:
parent
24e66546d9
commit
25d0403221
|
@ -5,6 +5,18 @@ Started 2007-June-11
|
|||
Please add newer entries at the top, list the date and your name with
|
||||
email address.
|
||||
|
||||
2008-Apr-17 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
|
||||
================================================================================
|
||||
+eeschema
|
||||
very small bug in display component info removed
|
||||
|
||||
+pcbnew
|
||||
+cvpcb
|
||||
removed bug: forgotten paths when adding lib files when not in the default lib path
|
||||
(same problem as in eeschema, solved in 2008-Apr-09 Update)
|
||||
|
||||
|
||||
|
||||
2008-Apr-16 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
|
||||
================================================================================
|
||||
+eeschema
|
||||
|
|
|
@ -235,7 +235,7 @@ wxString FullFileName, ShortLibName, mask;
|
|||
|
||||
FilesDialog.ShowModal();
|
||||
wxArrayString Filenames;
|
||||
FilesDialog.GetFilenames(Filenames);
|
||||
FilesDialog.GetPaths(Filenames);
|
||||
|
||||
if ( Filenames.GetCount() == 0 )
|
||||
return;
|
||||
|
|
|
@ -50,8 +50,7 @@ void SCH_COMPONENT::Display_Infos( WinEDA_DrawFrame* frame )
|
|||
|
||||
if( Entry )
|
||||
{
|
||||
Affiche_1_Parametre( frame, 52, Entry->m_Doc, wxEmptyString, DARKCYAN );
|
||||
Affiche_1_Parametre( frame, 52, wxEmptyString, Entry->m_KeyWord, DARKGREEN );
|
||||
Affiche_1_Parametre( frame, 52, Entry->m_Doc, Entry->m_KeyWord, DARKCYAN );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -201,7 +201,7 @@ void* WinEDA_SchematicFrame::BuildNetListBase()
|
|||
tabObjNet += ListeObjetConnection( this, sheet, tabObjNet );
|
||||
}
|
||||
|
||||
Affiche_1_Parametre( this, -1, wxEmptyString, _( "Done" ), RED );
|
||||
Affiche_1_Parametre( this, -1, _( "List" ), _( "Done" ), RED );
|
||||
|
||||
msg.Printf( wxT( "%d" ), g_NbrObjNet );
|
||||
Affiche_1_Parametre( this, 8, _( "NbItems" ), msg, GREEN );
|
||||
|
@ -308,7 +308,7 @@ void* WinEDA_SchematicFrame::BuildNetListBase()
|
|||
#endif
|
||||
|
||||
|
||||
Affiche_1_Parametre( this, -1, wxEmptyString, _( "Done" ), CYAN );
|
||||
Affiche_1_Parametre( this, 18, _( "Conn" ), _( "Done" ), CYAN );
|
||||
|
||||
/* Mise a jour des NetCodes des Bus Labels connectes par les Bus */
|
||||
ConnectBusLabels( g_TabObjNet, g_NbrObjNet );
|
||||
|
@ -348,7 +348,7 @@ void* WinEDA_SchematicFrame::BuildNetListBase()
|
|||
dumpNetTable();
|
||||
#endif
|
||||
|
||||
Affiche_1_Parametre( this, -1, wxEmptyString, _( "Done" ), CYAN );
|
||||
Affiche_1_Parametre( this, 26, _( "Labels" ), _( "Done" ), CYAN );
|
||||
|
||||
/* Connexion des hierarchies */
|
||||
Affiche_1_Parametre( this, 36, _( "Hierar." ), wxEmptyString, LIGHTRED );
|
||||
|
@ -369,7 +369,7 @@ void* WinEDA_SchematicFrame::BuildNetListBase()
|
|||
dumpNetTable();
|
||||
#endif
|
||||
|
||||
Affiche_1_Parametre( this, -1, wxEmptyString, _( "Done" ), RED );
|
||||
Affiche_1_Parametre( this, 36, _( "Hierar." ), _( "Done" ), RED );
|
||||
|
||||
/* Compression des numeros de NetCode a des valeurs consecutives */
|
||||
Affiche_1_Parametre( this, 46, _( "Sorting" ), wxEmptyString, GREEN );
|
||||
|
@ -384,7 +384,7 @@ void* WinEDA_SchematicFrame::BuildNetListBase()
|
|||
g_TabObjNet[i].SetNet( NetCode );
|
||||
}
|
||||
|
||||
Affiche_1_Parametre( this, -1, wxEmptyString, _( "Done" ), GREEN );
|
||||
Affiche_1_Parametre( this, 46, _( "Sorting" ), _( "Done" ), GREEN );
|
||||
|
||||
/* Affectation du m_FlagOfConnection en fonction de connection ou non */
|
||||
SetUnconnectedFlag( g_TabObjNet, g_NbrObjNet );
|
||||
|
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
@ -370,7 +370,7 @@ wxString mask = wxT("*");
|
|||
|
||||
FilesDialog.ShowModal();
|
||||
wxArrayString Filenames;
|
||||
FilesDialog.GetFilenames(Filenames);
|
||||
FilesDialog.GetPaths(Filenames);
|
||||
|
||||
for ( unsigned jj = 0; jj < Filenames.GetCount(); jj ++ )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue