diff options
author | komalsheth236 | 2015-09-22 14:31:02 +0530 |
---|---|---|
committer | komalsheth236 | 2015-09-22 14:31:02 +0530 |
commit | 193d284f377ccf963bbd762bdb03f3daae2fa1af (patch) | |
tree | 185b7547e717b9053a82b829b30aa05894daff33 /src/frontEnd/Application.py | |
parent | bcc0d1b98380f33b9d0c389f5322dc1e880af9e5 (diff) | |
download | eSim-193d284f377ccf963bbd762bdb03f3daae2fa1af.tar.gz eSim-193d284f377ccf963bbd762bdb03f3daae2fa1af.tar.bz2 eSim-193d284f377ccf963bbd762bdb03f3daae2fa1af.zip |
Nghdl Processes Terminated
Diffstat (limited to 'src/frontEnd/Application.py')
-rwxr-xr-x | src/frontEnd/Application.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/frontEnd/Application.py b/src/frontEnd/Application.py index ce6dfff7..c72422c1 100755 --- a/src/frontEnd/Application.py +++ b/src/frontEnd/Application.py @@ -242,6 +242,15 @@ class Application(QtGui.QMainWindow): proc.terminate() except: pass + + try : + for process_object in self.obj_appconfig.process_obj: + try: + process_object.close() + except: + pass + except: + pass ##Just checking if open and New window is open. If yes just close it when application is closed try: self.project.close() |