eeschema: library order when loading libs fixed (i hope)

This commit is contained in:
charras 2009-04-10 14:57:10 +00:00
parent 82d8faeb40
commit f02980cdaf
1 changed files with 2 additions and 3 deletions

View File

@ -164,7 +164,8 @@ void LoadLibraries (WinEDA_DrawFrame* frame)
else else
msg += _( " error!" ); msg += _( " error!" );
frame->PrintMsg( msg ); } frame->PrintMsg( msg );
}
// reorder the linked list to match the order filename list: // reorder the linked list to match the order filename list:
int NumOfLibs; int NumOfLibs;
@ -212,10 +213,8 @@ void LoadLibraries (WinEDA_DrawFrame* frame)
MyFree( libs ); MyFree( libs );
for( lib = g_LibraryList; lib != NULL; lib = lib->m_Pnext ) for( lib = g_LibraryList; lib != NULL; lib = lib->m_Pnext )
{
lib->m_Flags = 0; lib->m_Flags = 0;
} }
}
/**************************************************************/ /**************************************************************/