diff options
author | Kevin Smith <git@kismith.co.uk> | 2010-04-12 14:16:23 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2010-04-12 14:16:23 (GMT) |
commit | 9470b2eb602489b290f8df1aaf515712d9ea3dbf (patch) | |
tree | 8c222a8a00dc6f6f7d7fd22fd98fa66e5bd003a2 /Swift/QtUI/EventViewer/QtEventWindow.cpp | |
parent | a65372d1a0a85d04329cd91bcf6bdff2de492c80 (diff) | |
download | swift-contrib-9470b2eb602489b290f8df1aaf515712d9ea3dbf.zip swift-contrib-9470b2eb602489b290f8df1aaf515712d9ea3dbf.tar.bz2 |
Populate ErrorEvent for server disconnections.
Resolves: #303
Diffstat (limited to 'Swift/QtUI/EventViewer/QtEventWindow.cpp')
-rw-r--r-- | Swift/QtUI/EventViewer/QtEventWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/QtUI/EventViewer/QtEventWindow.cpp b/Swift/QtUI/EventViewer/QtEventWindow.cpp index 65b946a..b32c4cf 100644 --- a/Swift/QtUI/EventViewer/QtEventWindow.cpp +++ b/Swift/QtUI/EventViewer/QtEventWindow.cpp @@ -53,7 +53,7 @@ void QtEventWindow::handleItemActivated(const QModelIndex& item) { QtSubscriptionRequestWindow* window = QtSubscriptionRequestWindow::getWindow(subscriptionEvent, this); window->show(); } else if (errorEvent) { - errorEvent->onConclusion(); + errorEvent->conclude(); } else { qWarning() << "Trying to activate an unexpected event"; } |