editors/IECCodeViewer.py
author Laurent Bessard
Fri, 23 Nov 2012 13:36:47 +0100
changeset 887 d3c6c4ab8b28
parent 815 e4f24593a758
child 1057 3837e165b3f9
permissions -rw-r--r--
Adding support for displaying graphs of debugged numeric variables in 2D and 3D in DebugVariablePanel

from editors.TextViewer import TextViewer

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