removed bug: forgotten paths when adding lib files when not in the default lib path
This commit is contained in:
parent
03569ca112
commit
0750a215e5
|
@ -5,6 +5,14 @@ Started 2007-June-11
|
|||
Please add newer entries at the top, list the date and your name with
|
||||
email address.
|
||||
|
||||
2008-Apr-09 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
|
||||
================================================================================
|
||||
+eeschema
|
||||
removed bug: forgotten paths when adding lib files when not in the default lib path
|
||||
Also: adding SCH_COMPONENT.m_PartPerPackageSelections to handle multiple parts per package selection
|
||||
in a complex hierarchy, but yet, no other code to do that.
|
||||
|
||||
|
||||
2008-Mar-30 UPDATE Jonas Diemer <diemer-at-gmx.de>
|
||||
================================================================================
|
||||
+eeschema
|
||||
|
|
|
@ -37,8 +37,8 @@ enum NumFieldType {
|
|||
* component fields are texts attached to the component (not the graphic texts)
|
||||
* There are 2 major fields : Reference and Value
|
||||
*/
|
||||
class PartTextStruct : public EDA_BaseStruct
|
||||
, public EDA_TextStruct
|
||||
class PartTextStruct : public EDA_BaseStruct,
|
||||
public EDA_TextStruct
|
||||
{
|
||||
public:
|
||||
int m_Layer;
|
||||
|
@ -89,6 +89,7 @@ public:
|
|||
|
||||
wxArrayString m_Paths; // /sheet1/C102, /sh2/sh1/U32 etc.
|
||||
wxArrayString m_References; // C102, U32 etc.
|
||||
wxArrayString m_PartPerPackageSelections; // "1", "2" etc. when a component has more than 1 partper package
|
||||
wxString m_PrefixString; /* C, R, U, Q etc - the first character which typically indicates what the component is.
|
||||
* determined, upon placement, from the library component.
|
||||
* determined, upon file load, by the first non-digits in the reference fields. */
|
||||
|
|
|
@ -373,7 +373,7 @@ wxString FullLibName,ShortLibName, Mask;
|
|||
|
||||
FilesDialog.ShowModal();
|
||||
wxArrayString Filenames;
|
||||
FilesDialog.GetFilenames(Filenames);
|
||||
FilesDialog.GetPaths(Filenames);
|
||||
|
||||
for ( unsigned jj = 0; jj < Filenames.GetCount(); jj ++ )
|
||||
{
|
||||
|
|
Binary file not shown.
2376
internat/fr/kicad.po
2376
internat/fr/kicad.po
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue