24 @param parent reference to the parent widget (QWidget) |
24 @param parent reference to the parent widget (QWidget) |
25 @param keyword keyword for the link set (string) |
25 @param keyword keyword for the link set (string) |
26 @param links dictionary with help topic as key (string) and |
26 @param links dictionary with help topic as key (string) and |
27 URL as value (QUrl) |
27 URL as value (QUrl) |
28 """ |
28 """ |
29 super(HelpTopicDialog, self).__init__(parent) |
29 super().__init__(parent) |
30 self.setupUi(self) |
30 self.setupUi(self) |
31 |
31 |
32 self.label.setText(self.tr("Choose a &topic for <b>{0}</b>:") |
32 self.label.setText(self.tr("Choose a &topic for <b>{0}</b>:") |
33 .format(keyword)) |
33 .format(keyword)) |
34 |
34 |