Updated generated python scripts from ui files

Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
This commit is contained in:
TheJackiMonster 2022-12-14 18:16:11 +01:00
parent 34c1590401
commit 0fc0291809
No known key found for this signature in database
GPG key ID: D850A5F772E880F9
2 changed files with 11 additions and 18 deletions

View file

@ -2,12 +2,15 @@
# Form implementation generated from reading ui file 'manuskript/ui/editors/tabSplitter_ui.ui'
#
# Created by: PyQt5 UI code generator 5.9
# Created by: PyQt5 UI code generator 5.15.7
#
# WARNING! All changes made in this file will be lost!
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
# run again. Do not edit this file unless you know what you are doing.
from PyQt5 import QtCore, QtGui, QtWidgets
class Ui_tabSplitter(object):
def setupUi(self, tabSplitter):
tabSplitter.setObjectName("tabSplitter")
@ -37,4 +40,3 @@ class Ui_tabSplitter(object):
def retranslateUi(self, tabSplitter):
pass

View file

@ -1,10 +1,11 @@
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'listDialog_ui.ui'
# Form implementation generated from reading ui file 'manuskript/ui/listDialog_ui.ui'
#
# Created by: PyQt5 UI code generator 5.12.3
# Created by: PyQt5 UI code generator 5.15.7
#
# WARNING! All changes made in this file will be lost!
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
# run again. Do not edit this file unless you know what you are doing.
from PyQt5 import QtCore, QtGui, QtWidgets
@ -33,21 +34,11 @@ class Ui_GenericListDialog(object):
self.verticalLayout_2.addWidget(self.buttonBox)
self.retranslateUi(GenericListDialog)
self.buttonBox.accepted.connect(GenericListDialog.accept)
self.buttonBox.rejected.connect(GenericListDialog.reject)
self.buttonBox.accepted.connect(GenericListDialog.accept) # type: ignore
self.buttonBox.rejected.connect(GenericListDialog.reject) # type: ignore
QtCore.QMetaObject.connectSlotsByName(GenericListDialog)
def retranslateUi(self, GenericListDialog):
_translate = QtCore.QCoreApplication.translate
GenericListDialog.setWindowTitle(_translate("GenericListDialog", "Title"))
self.label.setText(_translate("GenericListDialog", "Text"))
if __name__ == "__main__":
import sys
app = QtWidgets.QApplication(sys.argv)
GenericListDialog = QtWidgets.QDialog()
ui = Ui_GenericListDialog()
ui.setupUi(GenericListDialog)
GenericListDialog.show()
sys.exit(app.exec_())