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 |