Split 2009 changelog, added Marco's WXMAC search path patch

This commit is contained in:
jerryjacobs 2010-01-16 11:16:09 +00:00
parent 1d98f1f1d2
commit a470a34e5b
3 changed files with 1018 additions and 1010 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -499,6 +499,10 @@ void WinEDA_App::SetDefaultSearchPaths( void )
* figure out a way to implement this without #ifdef, please do. */
#ifdef __WXMSW__
tmp.AddEnvList( wxT( "PROGRAMFILES" ) );
#elif __WXMAC__
m_searchPaths.Add( wxT("/Library/Application Support/kicad") );
m_searchPaths.Add( wxString(wxGetenv(wxT("HOME"))) +
wxT("/Library/Application Support/kicad") );
#else
tmp.AddEnvList( wxT( "PATH" ) );
#endif