summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2010-04-12 14:16:23 (GMT)
committerKevin Smith <git@kismith.co.uk>2010-04-12 14:16:23 (GMT)
commit9470b2eb602489b290f8df1aaf515712d9ea3dbf (patch)
tree8c222a8a00dc6f6f7d7fd22fd98fa66e5bd003a2 /Swift/QtUI/EventViewer
parenta65372d1a0a85d04329cd91bcf6bdff2de492c80 (diff)
downloadswift-9470b2eb602489b290f8df1aaf515712d9ea3dbf.zip
swift-9470b2eb602489b290f8df1aaf515712d9ea3dbf.tar.bz2
Populate ErrorEvent for server disconnections.
Resolves: #303
Diffstat (limited to 'Swift/QtUI/EventViewer')
-rw-r--r--Swift/QtUI/EventViewer/QtEventWindow.cpp2
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";
}