Fixups with Qt6 enums (#13611)

* Python PySide enums to C++ converter

* Python IntFlags to C++ int in getStandardButtons

* Remove int conversion in mods Python sources
This commit is contained in:
Martin Rodriguez Reboredo
2024-05-06 13:02:18 -03:00
committed by GitHub
parent b00a4384bf
commit 51987dc1ab
27 changed files with 64 additions and 52 deletions

View File

@@ -61,7 +61,7 @@ class TaskPanel:
return True
def getStandardButtons(self):
return int(QtGui.QDialogButtonBox.Ok)
return QtGui.QDialogButtonBox.Ok
def helpRequested(self):
pass