diff -r f98253eed7f0 -r 9dfc89a5aadf RefactoringRope/Ui_ChangeOccurrencesDialog.py --- a/RefactoringRope/Ui_ChangeOccurrencesDialog.py Sat Oct 26 15:50:43 2024 +0200 +++ b/RefactoringRope/Ui_ChangeOccurrencesDialog.py Sat Oct 26 15:54:44 2024 +0200 @@ -1,6 +1,6 @@ -# Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_plugins/Plugin_Refactoring_Rope/RefactoringRope/ChangeOccurrencesDialog.ui' +# Form implementation generated from reading ui file 'RefactoringRope/ChangeOccurrencesDialog.ui' # -# Created by: PyQt6 UI code generator 6.3.1 +# Created by: PyQt6 UI code generator 6.7.1 # # WARNING: Any manual changes made to this file will be lost when pyuic6 is # run again. Do not edit this file unless you know what you are doing. @@ -19,26 +19,26 @@ self.vboxlayout.setObjectName("vboxlayout") self.hboxlayout = QtWidgets.QHBoxLayout() self.hboxlayout.setObjectName("hboxlayout") - self.label = QtWidgets.QLabel(ChangeOccurrencesDialog) + self.label = QtWidgets.QLabel(parent=ChangeOccurrencesDialog) self.label.setObjectName("label") self.hboxlayout.addWidget(self.label) - self.replaceEdit = QtWidgets.QLineEdit(ChangeOccurrencesDialog) + self.replaceEdit = QtWidgets.QLineEdit(parent=ChangeOccurrencesDialog) self.replaceEdit.setClearButtonEnabled(True) self.replaceEdit.setObjectName("replaceEdit") self.hboxlayout.addWidget(self.replaceEdit) self.vboxlayout.addLayout(self.hboxlayout) - self.onlyCallsCheckBox = QtWidgets.QCheckBox(ChangeOccurrencesDialog) + self.onlyCallsCheckBox = QtWidgets.QCheckBox(parent=ChangeOccurrencesDialog) self.onlyCallsCheckBox.setObjectName("onlyCallsCheckBox") self.vboxlayout.addWidget(self.onlyCallsCheckBox) - self.readsCheckBox = QtWidgets.QCheckBox(ChangeOccurrencesDialog) + self.readsCheckBox = QtWidgets.QCheckBox(parent=ChangeOccurrencesDialog) self.readsCheckBox.setChecked(True) self.readsCheckBox.setObjectName("readsCheckBox") self.vboxlayout.addWidget(self.readsCheckBox) - self.writesCheckBox = QtWidgets.QCheckBox(ChangeOccurrencesDialog) + self.writesCheckBox = QtWidgets.QCheckBox(parent=ChangeOccurrencesDialog) self.writesCheckBox.setChecked(True) self.writesCheckBox.setObjectName("writesCheckBox") self.vboxlayout.addWidget(self.writesCheckBox) - self.buttonBox = QtWidgets.QDialogButtonBox(ChangeOccurrencesDialog) + self.buttonBox = QtWidgets.QDialogButtonBox(parent=ChangeOccurrencesDialog) self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) self.buttonBox.setObjectName("buttonBox") @@ -60,13 +60,3 @@ self.readsCheckBox.setText(_translate("ChangeOccurrencesDialog", "Reads")) self.writesCheckBox.setToolTip(_translate("ChangeOccurrencesDialog", "Select to change occurrences with write access")) self.writesCheckBox.setText(_translate("ChangeOccurrencesDialog", "Writes")) - - -if __name__ == "__main__": - import sys - app = QtWidgets.QApplication(sys.argv) - ChangeOccurrencesDialog = QtWidgets.QDialog() - ui = Ui_ChangeOccurrencesDialog() - ui.setupUi(ChangeOccurrencesDialog) - ChangeOccurrencesDialog.show() - sys.exit(app.exec())