108 Public slot to report some changed sources. |
108 Public slot to report some changed sources. |
109 |
109 |
110 @param filename file name of the changed source (string) |
110 @param filename file name of the changed source (string) |
111 @param oldSource source code before the change (string) |
111 @param oldSource source code before the change (string) |
112 """ |
112 """ |
113 import rope.base.libutils |
|
114 |
|
115 try: |
113 try: |
116 rope.base.libutils.report_change( |
114 rope.base.libutils.report_change( |
117 self.__project, filename, oldSource) |
115 self.__project, filename, oldSource) |
118 except RuntimeError: |
116 except RuntimeError: |
119 # this could come from trying to do PyQt4/PyQt5 mixed stuff |
117 # this could come from trying to do PyQt4/PyQt5 mixed stuff |