Sat, 16 Feb 2019 10:26:04 +0100
changelog: added a change log entry for 19.02.1.
(grafted from c5a61d7afc9c574919c3b8d076f4dafec0fac049)
# -*- coding: utf-8 -*- """ Module implementing $CLASSNAME$. """ from PyQt4.QtCore import pyqtSlot from PyQt4.QtGui import $SUPERCLASS$ from .Ui_$FORMFILE$ import Ui_$FORMCLASS$ class $CLASSNAME$($SUPERCLASS$, Ui_$FORMCLASS$): """ Class documentation goes here. """ def __init__(self, parent=None): """ Constructor @param parent reference to the parent widget @type QWidget """ super($CLASSNAME$, self).__init__(parent) self.setupUi(self)