Sun, 05 Jan 2014 15:20:02 +0100
Fixed an issue in the syntax and code style checker dialogs causing markers of open files not to be checked being cleared.
# -*- coding: utf-8 -*- """ Module implementing $CLASSNAME$. """ from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets 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 (QWidget) """ super($SUPERCLASS$, self).__init__(parent) self.setupUi(self)