1
0

qml: consistency camelcase pyqtProperties

This commit is contained in:
Sander van Grieken
2023-04-25 14:15:13 +02:00
parent e26d49f11e
commit a23457f48d
14 changed files with 31 additions and 31 deletions

View File

@@ -92,7 +92,7 @@ class QEChannelDetails(QObject, QtEventListener):
return self._channel.node_id.hex()
@pyqtProperty(str, notify=channelChanged)
def short_cid(self):
def shortCid(self):
return self._channel.short_id_for_GUI()
@pyqtProperty(str, notify=channelChanged)
@@ -171,7 +171,7 @@ class QEChannelDetails(QObject, QtEventListener):
return self._channel.can_be_deleted()
@pyqtProperty(str, notify=channelChanged)
def message_force_close(self, notify=channelChanged):
def messageForceClose(self, notify=channelChanged):
return _(messages.MSG_REQUEST_FORCE_CLOSE).strip()
@pyqtProperty(bool, notify=channelChanged)