class FilterLocationsDateDialog(QDialog):
    """ Loads the Filter Locations by Date dialog from the ui and shows it """
    def __init__(self, parent=None):
        # Load the UI from the python file
        QDialog.__init__(self, parent)
        self.ui = Ui_FilterLocationsDateDialog()
        self.ui.setupUi(self)
Exemplo n.º 2
0
 def __init__(self, parent=None):
     # Load the UI from the python file
     QDialog.__init__(self, parent)
     self.ui = Ui_FilterLocationsDateDialog()
     self.ui.setupUi(self)
 def __init__(self, parent=None):
     # Load the UI from the python file
     QDialog.__init__(self, parent)
     self.ui = Ui_FilterLocationsDateDialog()
     self.ui.setupUi(self)