RefactoringRope/RefactoringDialogBase.py

branch
server_client_variant
changeset 203
c38750e1bafd
parent 189
2711fdd91925
child 245
75a35a927952
equal deleted inserted replaced
202:a111134b5dc7 203:c38750e1bafd
75 Public method to preview the changes. 75 Public method to preview the changes.
76 76
77 @param data dictionary containing the change data 77 @param data dictionary containing the change data
78 @type dict 78 @type dict
79 """ 79 """
80 from ChangesPreviewDialog import ChangesPreviewDialog 80 from .ChangesPreviewDialog import ChangesPreviewDialog
81 dlg = ChangesPreviewDialog( 81 dlg = ChangesPreviewDialog(
82 data["Description"], data["Changes"], self) 82 data["Description"], data["Changes"], self)
83 if dlg.exec_() == QDialog.Accepted: 83 if dlg.exec_() == QDialog.Accepted:
84 self.applyChanges() 84 self.applyChanges()
85 85

eric ide

mercurial