537 """ |
537 """ |
538 Private slot to activate SOA. |
538 Private slot to activate SOA. |
539 |
539 |
540 @param filename name of the file that was saved (string) |
540 @param filename name of the file that was saved (string) |
541 """ |
541 """ |
542 # TODO: report change to the refactoring object as well |
|
543 if filename == self.__savedEditorName and self.__oldEditorText: |
542 if filename == self.__savedEditorName and self.__oldEditorText: |
|
543 self.__object.reportChanged(self.__savedEditorName, |
|
544 self.__oldEditorText) |
544 self.__caObject.reportChanged(self.__savedEditorName, |
545 self.__caObject.reportChanged(self.__savedEditorName, |
545 self.__oldEditorText) |
546 self.__oldEditorText) |
546 else: |
547 else: |
|
548 self.__object.reportChanged(filename, "") |
547 self.__caObject.reportChanged(filename, "") |
549 self.__caObject.reportChanged(filename, "") |
548 |
550 |
549 def __setCalltipsHook(self, editor): |
551 def __setCalltipsHook(self, editor): |
550 """ |
552 """ |
551 Private method to set the calltip hook. |
553 Private method to set the calltip hook. |