editors/IECCodeViewer.py
author Edouard Tisserant
Thu, 25 Oct 2012 10:52:46 +0200
changeset 868 7e5da4962bea
parent 815 e4f24593a758
child 1057 3837e165b3f9
permissions -rw-r--r--
Fix bug of PythonIterator signature in PLCObject when not using PythonLibrary

from editors.TextViewer import TextViewer

class IECCodeViewer(TextViewer):
    
    def __del__(self):
        TextViewer.__del__(self)
        if getattr(self, "_OnClose"):
            self._OnClose(self)