1. 04 Dec, 2012 1 commit
    • Antia Puentes's avatar
      In eeschema, when inserting a component into the schematic using the · c9714604
      Antia Puentes authored
      Library Browser tool, you have to select it in the components listbox
      and then press the "Insert component into schematic" button to close the
      window and return to the schematic.
      
      The attached patch enables the selection and insertion of a component in
      schematic by double clicking on it in the Library Browser component
      listbox. As the double clicking should have effect only if the Library
      Browser was launched to load a component in schematic, the patch checks
      for NULL the m_Semaphore variable, used two distinguish the mode in
      which the Library Browser is running (modal, used when inserting a
      component in schematic, or non-modal).
      c9714604
  2. 03 Dec, 2012 2 commits
  3. 02 Dec, 2012 1 commit
  4. 01 Dec, 2012 1 commit
  5. 30 Nov, 2012 2 commits
  6. 29 Nov, 2012 2 commits
  7. 28 Nov, 2012 3 commits
  8. 27 Nov, 2012 7 commits
  9. 26 Nov, 2012 2 commits
  10. 25 Nov, 2012 2 commits
  11. 24 Nov, 2012 3 commits
  12. 23 Nov, 2012 2 commits
  13. 22 Nov, 2012 1 commit
  14. 20 Nov, 2012 3 commits
  15. 19 Nov, 2012 3 commits
  16. 16 Nov, 2012 1 commit
  17. 15 Nov, 2012 3 commits
  18. 14 Nov, 2012 1 commit
    • jean-pierre charras's avatar
      Fix compil issue under MinGW: for an obscure reason the option -std=c++0x... · 3688bae7
      jean-pierre charras authored
      Fix compil issue under MinGW: for an obscure reason the option -std=c++0x creates error in wxWidget code:
      some functions used in wxWidgets ( like _strdup and few other) are not defined when this option is set. 
      but the equivalent option -std=gnu++0x works fine so it is used under mingw instead of  -std=c++0x.
      (Under Linux/OSX  the option -std=c++0x is used)
      3688bae7