diff options
-rw-r--r-- | Swift/QtUI/QtSwift.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/QtUI/QtSwift.cpp b/Swift/QtUI/QtSwift.cpp index 60f93cc..9602336 100644 --- a/Swift/QtUI/QtSwift.cpp +++ b/Swift/QtUI/QtSwift.cpp @@ -200,7 +200,6 @@ QtSwift::QtSwift(const po::variables_map& options) : networkFactories_(&clientMa } QtSwift::~QtSwift() { - delete notifier_; delete autoUpdater_; foreach (QtUIFactory* factory, uiFactories_) { delete factory; @@ -208,6 +207,7 @@ QtSwift::~QtSwift() { foreach (MainController* controller, mainControllers_) { delete controller; } + delete notifier_; delete settingsHierachy_; delete qtSettings_; delete xmlSettings_; |