Commit 6d643f70 authored by Miguel Angel Ajo's avatar Miguel Angel Ajo

Fixed Board.Save, listPcb.py +x and updated TODO.txt

parent cd93e14d
iterator for NETCLASSES (NETCLASS) see class_netclass.h
* Tell swig(somehow) to forget automatic object deletion after adding
a BOARD_ITEM to BOARD object (it will be automatically deleted by BOARD,
leading to Segmentation Fault when unloading our python module (double free).
* implement iterator for NETCLASSES (NETCLASS) see class_netclass.h
* add MODULE::Add (see BOARD:Add), to make it more clean
* add wxSize implementation to wx.i and wx helpers (D_PAD uses it)
......@@ -44,7 +44,7 @@
def GetTrackWidthList(self): return self.m_TrackWidthList
def Save(self,filename):
return pcbnew.SaveBoard(filename,self)
return SaveBoard(filename,self)
}
}
......
#!/usr/bin/env python
import sys
from pcbnew import *
......
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