Commit a470a34e authored by jerryjacobs's avatar jerryjacobs

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

parent 1d98f1f1
This diff is collapsed.
This diff is collapsed.
...@@ -499,6 +499,10 @@ void WinEDA_App::SetDefaultSearchPaths( void ) ...@@ -499,6 +499,10 @@ void WinEDA_App::SetDefaultSearchPaths( void )
* figure out a way to implement this without #ifdef, please do. */ * figure out a way to implement this without #ifdef, please do. */
#ifdef __WXMSW__ #ifdef __WXMSW__
tmp.AddEnvList( wxT( "PROGRAMFILES" ) ); 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 #else
tmp.AddEnvList( wxT( "PATH" ) ); tmp.AddEnvList( wxT( "PATH" ) );
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment