ViewManager/ViewManager.py

changeset 5689
73f3d131d035
parent 5674
a0ad2dcb27f9
child 5726
e1dbd217214a
equal deleted inserted replaced
5685:b6157619e1ab 5689:73f3d131d035
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