ViewManager/ViewManager.py

branch
maintenance
changeset 5686
6f9ab06c834d
parent 5674
a0ad2dcb27f9
child 5726
e1dbd217214a
equal deleted inserted replaced
5682:08f320a4b673 5686:6f9ab06c834d
6293 6293
6294 If it cannot close all editor windows, it aborts the shutdown process. 6294 If it cannot close all editor windows, it aborts the shutdown process.
6295 6295
6296 @return flag indicating success (boolean) 6296 @return flag indicating success (boolean)
6297 """ 6297 """
6298 e5App().focusChanged.disconnect(self.appFocusChanged) 6298 try:
6299 e5App().focusChanged.disconnect(self.appFocusChanged)
6300 except TypeError:
6301 pass
6299 6302
6300 self.closeAllWindows() 6303 self.closeAllWindows()
6301 6304
6302 # save the list of recently opened projects 6305 # save the list of recently opened projects
6303 self.__saveRecent() 6306 self.__saveRecent()

eric ide

mercurial