201 """ |
201 """ |
202 self.__refactoringServer.deactivate() |
202 self.__refactoringServer.deactivate() |
203 |
203 |
204 self.__codeAssistServer.deactivate() |
204 self.__codeAssistServer.deactivate() |
205 |
205 |
|
206 e5App().getObject("PluginManager").shutdown.disconnect( |
|
207 self.__shutdown) |
206 e5App().getObject("ViewManager").editorOpenedEd.disconnect( |
208 e5App().getObject("ViewManager").editorOpenedEd.disconnect( |
207 self.__editorOpened) |
209 self.__editorOpened) |
208 e5App().getObject("ViewManager").editorClosedEd.disconnect( |
210 e5App().getObject("ViewManager").editorClosedEd.disconnect( |
209 self.__editorClosed) |
211 self.__editorClosed) |
210 |
212 |
217 """ |
219 """ |
218 Private slot handling the shutdown signal of the plug-in manager. |
220 Private slot handling the shutdown signal of the plug-in manager. |
219 """ |
221 """ |
220 if self.__codeAssistServer: |
222 if self.__codeAssistServer: |
221 self.__codeAssistServer.deactivate() |
223 self.__codeAssistServer.deactivate() |
222 ## if self.__refactoringServer: |
|
223 ## self.__refactoringServer.deactivate() |
|
224 |
224 |
225 def __loadTranslator(self): |
225 def __loadTranslator(self): |
226 """ |
226 """ |
227 Private method to load the translation file. |
227 Private method to load the translation file. |
228 """ |
228 """ |