diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-10-25 18:44:36 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-10-25 18:45:36 (GMT) |
commit | f77eeb87104a4ea0fd8e43399da14dc5f1cd97c3 (patch) | |
tree | 484a1755ccb69421de3ed9b7b9c731870f2de56a /Swiften/Component/UnitTest | |
parent | bd80c3b9054d91b3cbc309400f4db195c708115d (diff) | |
download | swift-f77eeb87104a4ea0fd8e43399da14dc5f1cd97c3.zip swift-f77eeb87104a4ea0fd8e43399da14dc5f1cd97c3.tar.bz2 |
Remove the use of Shared<>.
Diffstat (limited to 'Swiften/Component/UnitTest')
-rw-r--r-- | Swiften/Component/UnitTest/ComponentSessionTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swiften/Component/UnitTest/ComponentSessionTest.cpp b/Swiften/Component/UnitTest/ComponentSessionTest.cpp index 1722ad4..d35a664 100644 --- a/Swiften/Component/UnitTest/ComponentSessionTest.cpp +++ b/Swiften/Component/UnitTest/ComponentSessionTest.cpp @@ -162,7 +162,7 @@ class ComponentSessionTest : public CppUnit::TestFixture { void receiveHandshake() { Event event = popEvent(); CPPUNIT_ASSERT(event.element); - ComponentHandshake::ref handshake(ComponentHandshake::cast(event.element)); + ComponentHandshake::ref handshake(boost::dynamic_pointer_cast<ComponentHandshake>(event.element)); CPPUNIT_ASSERT(handshake); CPPUNIT_ASSERT_EQUAL(String("4c4f8a41141722c8bbfbdd92d827f7b2fc0a542b"), handshake->getData()); } |