28 def __init__(self, connections=[], parent=None): |
28 def __init__(self, connections=[], parent=None): |
29 """ |
29 """ |
30 Constructor |
30 Constructor |
31 |
31 |
32 @param connections list of database connections to add (list of strings) |
32 @param connections list of database connections to add (list of strings) |
33 @param reference to the parent widget (QWidget) |
33 @param parent reference to the parent widget (QWidget) |
34 """ |
34 """ |
35 super().__init__(parent) |
35 super().__init__(parent) |
36 self.setObjectName("SqlBrowser") |
36 self.setObjectName("SqlBrowser") |
37 |
37 |
38 self.setWindowTitle(self.trUtf8("SQL Browser")) |
38 self.setWindowTitle(self.trUtf8("SQL Browser")) |