diff -r 32dd7dbf3e8e -r 83b71483e198 RefactoringRope/InlineArgumentDefaultDialog.py --- a/RefactoringRope/InlineArgumentDefaultDialog.py Sun Jan 30 19:00:34 2011 +0100 +++ b/RefactoringRope/InlineArgumentDefaultDialog.py Sun Jan 30 19:19:40 2011 +0100 @@ -15,7 +15,8 @@ from Ui_InlineArgumentDefaultDialog import Ui_InlineArgumentDefaultDialog from RefactoringDialogBase import RefactoringDialogBase -class InlineArgumentDefaultDialog(RefactoringDialogBase, + +class InlineArgumentDefaultDialog(RefactoringDialogBase, Ui_InlineArgumentDefaultDialog): """ Class implementing the Inline Argument Default dialog. @@ -29,7 +30,7 @@ @param refactoring reference to the main refactoring object (Refactoring) @param title title of the dialog (string) - @param changer reference to the signature changer object + @param changer reference to the signature changer object (rope.refactor.change_signature.ChangeSignature) @param parent reference to the parent widget (QWidget) """ @@ -104,7 +105,7 @@ inliner = \ rope.refactor.change_signature.ArgumentDefaultInliner( index) - changes = self.__signature.get_changes([inliner], + changes = self.__signature.get_changes([inliner], task_handle=handle) return changes except Exception as err: