MqttMonitor/MqttConnectionProfilesDialog.py

branch
eric7
changeset 153
4f4c2e272dcc
parent 151
f9830d91be9a
child 154
b66cfd856e93
equal deleted inserted replaced
152:0a4969f23c46 153:4f4c2e272dcc
760 Private slot to edit the last will user properties. 760 Private slot to edit the last will user properties.
761 """ 761 """
762 from .MqttUserPropertiesEditor import MqttUserPropertiesEditorDialog 762 from .MqttUserPropertiesEditor import MqttUserPropertiesEditorDialog
763 763
764 dlg = MqttUserPropertiesEditorDialog( 764 dlg = MqttUserPropertiesEditorDialog(
765 self.tr("Last Will User Properties"), self.__willProperties, self 765 self.tr("Last Will User Properties"), self.__willProperties, parent=self
766 ) 766 )
767 if dlg.exec() == QDialog.DialogCode.Accepted: 767 if dlg.exec() == QDialog.DialogCode.Accepted:
768 self.__willProperties = dlg.getProperties() 768 self.__willProperties = dlg.getProperties()
769 769
770 @pyqtSlot(str) 770 @pyqtSlot(str)

eric ide

mercurial