21 """ |
21 """ |
22 Constructor |
22 Constructor |
23 |
23 |
24 @param parent reference to the parent object (QObject) |
24 @param parent reference to the parent object (QObject) |
25 @param save slot to be called to perform the save operation |
25 @param save slot to be called to perform the save operation |
|
26 @exception RuntimeError raised, if no parent is given |
26 """ |
27 """ |
27 super().__init__(parent) |
28 super().__init__(parent) |
28 |
29 |
29 if parent is None: |
30 if parent is None: |
30 raise RuntimeError("AutoSaver: parent must not be None.") |
31 raise RuntimeError("AutoSaver: parent must not be None.") |