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)
Ejemplo n.º 2
0
class FilterLocationsDateDialog(QDialog):
    def __init__(self, parent=None):
        # Load the UI from the python file
        QDialog.__init__(self, parent)
        self.ui = Ui_FilterLocationsDateDialog()
        self.ui.setupUi(self)
Ejemplo n.º 3
0
class FilterLocationsDateDialog(QDialog):
    def __init__(self, parent=None):
        # Load the UI from the python file
        QDialog.__init__(self, parent)
        self.ui = Ui_FilterLocationsDateDialog()
        self.ui.setupUi(self)