diff options
author | Remko Tronçon <git@el-tramo.be> | 2011-06-13 17:26:40 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-06-13 17:35:31 (GMT) |
commit | b7b5d7093be4591a44dbfbaaec6aa253d2f767ac (patch) | |
tree | 709a5506a7f9b3d2467da4f89b53cb02874a319a /Swift/Controllers/Chat | |
parent | 32ad273cf4fdc4cd0df9c8982824b62c02a3c61a (diff) | |
download | swift-contrib-b7b5d7093be4591a44dbfbaaec6aa253d2f767ac.zip swift-contrib-b7b5d7093be4591a44dbfbaaec6aa253d2f767ac.tar.bz2 |
Some more Cppcheck tweaks.
Diffstat (limited to 'Swift/Controllers/Chat')
-rw-r--r-- | Swift/Controllers/Chat/UnitTest/ChatsManagerTest.cpp | 1 | ||||
-rw-r--r-- | Swift/Controllers/Chat/UserSearchController.cpp | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/Swift/Controllers/Chat/UnitTest/ChatsManagerTest.cpp b/Swift/Controllers/Chat/UnitTest/ChatsManagerTest.cpp index ee27196..b8cb368 100644 --- a/Swift/Controllers/Chat/UnitTest/ChatsManagerTest.cpp +++ b/Swift/Controllers/Chat/UnitTest/ChatsManagerTest.cpp @@ -61,7 +61,6 @@ class ChatsManagerTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE_END(); public: - // cppcheck-suppress publicAllocationError void setUp() { mocks_ = new MockRepository(); jid_ = JID("test@test.com/resource"); diff --git a/Swift/Controllers/Chat/UserSearchController.cpp b/Swift/Controllers/Chat/UserSearchController.cpp index deac2f9..5a76c5d 100644 --- a/Swift/Controllers/Chat/UserSearchController.cpp +++ b/Swift/Controllers/Chat/UserSearchController.cpp @@ -85,12 +85,12 @@ void UserSearchController::endDiscoWalker() { void UserSearchController::handleDiscoServiceFound(const JID& jid, boost::shared_ptr<DiscoInfo> info) { - bool isUserDirectory = false; + //bool isUserDirectory = false; bool supports55 = false; foreach (DiscoInfo::Identity identity, info->getIdentities()) { if ((identity.getCategory() == "directory" && identity.getType() == "user")) { - isUserDirectory = true; + //isUserDirectory = true; } } std::vector<std::string> features = info->getFeatures(); |