editors/IECCodeViewer.py
author Laurent Bessard
Thu, 25 Oct 2012 19:56:48 +0200
changeset 869 abf90a44c265
parent 815 e4f24593a758
child 1057 3837e165b3f9
permissions -rw-r--r--
Fix bug when more than one block library add extra python file

from editors.TextViewer import TextViewer

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