示例#1
0
class PluginRatesCheckDialog(QDialog):
    """
    Loads the Plugin Rates Check Dialog that provides information regarding the API limits of the plugin
    """
    def __init__(self, parent=None):
        # Load the UI from the python file
        QDialog.__init__(self, parent)
        self.ui = Ui_checkPluginRatesDialog()
        self.ui.setupUi(self)
        self.setAttribute(Qt.WA_DeleteOnClose)
class PluginRatesCheckDialog(QDialog):
    """
    Loads the Plugin Rates Check Dialog that provides information regarding the API limits of the plugin
    """
    def __init__(self, parent=None):
        # Load the UI from the python file
        QDialog.__init__(self, parent)
        self.ui = Ui_checkPluginRatesDialog()
        self.ui.setupUi(self)
        self.setAttribute(Qt.WA_DeleteOnClose)
示例#3
0
 def __init__(self, parent=None):
     # Load the UI from the python file
     QDialog.__init__(self, parent)
     self.ui = Ui_checkPluginRatesDialog()
     self.ui.setupUi(self)
     self.setAttribute(Qt.WA_DeleteOnClose)
 def __init__(self, parent=None):
     # Load the UI from the python file
     QDialog.__init__(self, parent)
     self.ui = Ui_checkPluginRatesDialog()
     self.ui.setupUi(self)
     self.setAttribute(Qt.WA_DeleteOnClose)