diff options
Diffstat (limited to 'cppe/demo/IceE/chat/ChatClientDlg.cpp')
-rw-r--r-- | cppe/demo/IceE/chat/ChatClientDlg.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/cppe/demo/IceE/chat/ChatClientDlg.cpp b/cppe/demo/IceE/chat/ChatClientDlg.cpp index 70ed25aa683..85ca4c60cc2 100644 --- a/cppe/demo/IceE/chat/ChatClientDlg.cpp +++ b/cppe/demo/IceE/chat/ChatClientDlg.cpp @@ -407,13 +407,18 @@ CChatClientDlg::OnLogin() { _router->destroySession(); } + catch(const Ice::ConnectionLostException&) + { + // + // Expected: the router closed the connection. + // + } catch(const Ice::Exception& ex) { AfxMessageBox(CString(ex.toString().c_str()), MB_OK|MB_ICONEXCLAMATION); } - _adapter->deactivate();
- _adapter->waitForDeactivate(); + _adapter->destroy(); _router = 0; } |