diff options
author | Kevin Smith <git@kismith.co.uk> | 2011-04-02 13:19:05 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2011-04-02 13:19:05 (GMT) |
commit | 45bc8948972a1b65ca4fdc4e5cce7f3de8f533cd (patch) | |
tree | 82656bb65e5f65a15c6e5c60d2956e05bb064c32 /Swift/Controllers | |
parent | 67cf8daa6d43205c3b6ecc98da8e10c196c741bd (diff) | |
download | swift-swift-1.0rc1.zip swift-swift-1.0rc1.tar.bz2 |
Don't disable GUI during destruction.swift-1.0rc1
The translation stuff had gone away before the destructor, causing
segfaults while disabling the UIs prior to destroying them.
Resolves: #785
Diffstat (limited to 'Swift/Controllers')
-rw-r--r-- | Swift/Controllers/MainController.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/Controllers/MainController.cpp b/Swift/Controllers/MainController.cpp index c4ed28e..9a35cc1 100644 --- a/Swift/Controllers/MainController.cpp +++ b/Swift/Controllers/MainController.cpp @@ -161,7 +161,7 @@ MainController::MainController( } MainController::~MainController() { - setManagersOffline(); + //setManagersOffline(); eventController_->disconnectAll(); resetClient(); |