summaryrefslogtreecommitdiffstats
path: root/Swift
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2011-04-30 09:15:23 (GMT)
committerKevin Smith <git@kismith.co.uk>2011-04-30 09:17:26 (GMT)
commitc26753dc9785377da0d836ce6f4286af6e3b8790 (patch)
tree03485bab66a4b0c8c4d5b92a6ef56543b8a1cc2b /Swift
parentb226deb937bfcbac1bb5b8acca9404d2d371ae66 (diff)
downloadswift-c26753dc9785377da0d836ce6f4286af6e3b8790.zip
swift-c26753dc9785377da0d836ce6f4286af6e3b8790.tar.bz2
This should fix the MUC ordering.
Hopefully Resolves: #794
Diffstat (limited to 'Swift')
-rw-r--r--Swift/Controllers/Chat/MUCController.cpp5
-rw-r--r--Swift/Controllers/Chat/MUCController.h3
2 files changed, 2 insertions, 6 deletions
diff --git a/Swift/Controllers/Chat/MUCController.cpp b/Swift/Controllers/Chat/MUCController.cpp
index 0604dee..19489d3 100644
--- a/Swift/Controllers/Chat/MUCController.cpp
+++ b/Swift/Controllers/Chat/MUCController.cpp
@@ -209,10 +209,7 @@ void MUCController::handleOccupantJoined(const MUCOccupant& occupant) {
appendToJoinParts(joinParts_, event);
std::string groupName(roleToGroupName(occupant.getRole()));
roster_->addContact(jid, realJID, occupant.getNick(), groupName, avatarManager_->getAvatarPath(jid).string());
- if (addedRosterGroups_.count(groupName) == 0) {
- roster_->getGroup(groupName)->setManualSort(roleToSortName(occupant.getRole()));
- addedRosterGroups_.insert(groupName);
- }
+ roster_->getGroup(groupName)->setManualSort(roleToSortName(occupant.getRole()));
if (joined_) {
std::string joinString;
MUCOccupant::Role role = occupant.getRole();
diff --git a/Swift/Controllers/Chat/MUCController.h b/Swift/Controllers/Chat/MUCController.h
index e876791..6b05a8e 100644
--- a/Swift/Controllers/Chat/MUCController.h
+++ b/Swift/Controllers/Chat/MUCController.h
@@ -9,8 +9,8 @@
#include <boost/shared_ptr.hpp>
#include <Swiften/Base/boost_bsignals.h>
#include <boost/signals/connection.hpp>
-#include <set>
+#include <set>
#include <string>
#include <Swiften/Network/Timer.h>
#include <Swift/Controllers/Chat/ChatControllerBase.h>
@@ -98,7 +98,6 @@ namespace Swift {
std::set<std::string> currentOccupants_;
std::vector<NickJoinPart> joinParts_;
boost::posix_time::ptime lastActivity_;
- std::set<std::string> addedRosterGroups_;
};
}