17 Class implementing a dialog to edit the data of a search engine. |
17 Class implementing a dialog to edit the data of a search engine. |
18 """ |
18 """ |
19 def __init__(self, engine, parent=None): |
19 def __init__(self, engine, parent=None): |
20 """ |
20 """ |
21 Constructor |
21 Constructor |
|
22 |
|
23 @param engine reference to the search engine (OpenSearchEngine) |
|
24 @param parent reference to the parent object (QWidget) |
22 """ |
25 """ |
23 super().__init__(parent) |
26 super().__init__(parent) |
24 self.setupUi(self) |
27 self.setupUi(self) |
25 |
28 |
26 self.__engine = engine |
29 self.__engine = engine |