diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-12-17 15:47:07 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-12-17 16:09:00 (GMT) |
commit | b5ad1ec998ec01501866c2ae5ea66c650b79c5cf (patch) | |
tree | 078c087c365dcb36e9591034f2a0aeeb0a46ce7e /Swift/Controllers/Chat/UnitTest | |
parent | ce54856995e6efe067276ed2f1a8c67decbc5abf (diff) | |
download | swift-contrib-b5ad1ec998ec01501866c2ae5ea66c650b79c5cf.zip swift-contrib-b5ad1ec998ec01501866c2ae5ea66c650b79c5cf.tar.bz2 |
Collapsed all UI factories into UIFactory.
Diffstat (limited to 'Swift/Controllers/Chat/UnitTest')
-rw-r--r-- | Swift/Controllers/Chat/UnitTest/ChatsManagerTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/Controllers/Chat/UnitTest/ChatsManagerTest.cpp b/Swift/Controllers/Chat/UnitTest/ChatsManagerTest.cpp index c180062..9c1cc36 100644 --- a/Swift/Controllers/Chat/UnitTest/ChatsManagerTest.cpp +++ b/Swift/Controllers/Chat/UnitTest/ChatsManagerTest.cpp @@ -79,7 +79,7 @@ public: uiEventStream_ = new UIEventStream(); entityCapsManager_ = new EntityCapsManager(capsProvider_, stanzaChannel_); chatListWindowFactory_ = mocks_->InterfaceMock<ChatListWindowFactory>(); - mocks_->ExpectCall(chatListWindowFactory_, ChatListWindowFactory::createWindow).With(uiEventStream_).Return(NULL); + mocks_->ExpectCall(chatListWindowFactory_, ChatListWindowFactory::createChatListWindow).With(uiEventStream_).Return(NULL); manager_ = new ChatsManager(jid_, stanzaChannel_, iqRouter_, eventController_, chatWindowFactory_, nickResolver_, presenceOracle_, directedPresenceSender_, uiEventStream_, chatListWindowFactory_, true, NULL, mucRegistry_, entityCapsManager_, mucManager_); avatarManager_ = new NullAvatarManager(); |