8086 def __shutdown(self): |
8086 def __shutdown(self): |
8087 """ |
8087 """ |
8088 Private method to perform all necessary steps to close down the IDE. |
8088 Private method to perform all necessary steps to close down the IDE. |
8089 |
8089 |
8090 @return flag indicating success |
8090 @return flag indicating success |
|
8091 @rtype bool |
8091 """ |
8092 """ |
8092 if self.shutdownCalled: |
8093 if self.shutdownCalled: |
8093 return True |
8094 return True |
|
8095 |
|
8096 if not self.viewmanager.checkAllDirty(): |
|
8097 return False |
8094 |
8098 |
8095 if self.__webBrowserProcess is not None: |
8099 if self.__webBrowserProcess is not None: |
8096 self.__webBrowserShutdown() |
8100 self.__webBrowserShutdown() |
8097 |
8101 |
8098 if self.irc is not None and not self.irc.shutdown(): |
8102 if self.irc is not None and not self.irc.shutdown(): |