diff options
author | Remko Tronçon <git@el-tramo.be> | 2011-05-23 19:02:26 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-05-23 19:02:26 (GMT) |
commit | 0c4eba31839a8174a8d7776b0f55fcbd12899d10 (patch) | |
tree | d12027713968332f98eee44e6671e95f0f5682ca /Swift/Controllers/Roster/RosterController.h | |
parent | 182bdd709a57ab4d17f163ae28c5663fb3dd4287 (diff) | |
parent | 3f72e2c3b7ce5a83287dc136c68b7ef6d2cc66bd (diff) | |
download | swift-contrib-0c4eba31839a8174a8d7776b0f55fcbd12899d10.zip swift-contrib-0c4eba31839a8174a8d7776b0f55fcbd12899d10.tar.bz2 |
Merge branch 'swift-1.x'
* swift-1.x:
Fixed const references to vectors.
Conflicts:
Swiften/Elements/JinglePayload.h
Swiften/Jingle/JingleSession.h
Diffstat (limited to 'Swift/Controllers/Roster/RosterController.h')
-rw-r--r-- | Swift/Controllers/Roster/RosterController.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/Controllers/Roster/RosterController.h b/Swift/Controllers/Roster/RosterController.h index f224180..0a2b818 100644 --- a/Swift/Controllers/Roster/RosterController.h +++ b/Swift/Controllers/Roster/RosterController.h @@ -57,7 +57,7 @@ namespace Swift { void handleOnJIDAdded(const JID &jid); void handleRosterCleared(); void handleOnJIDRemoved(const JID &jid); - void handleOnJIDUpdated(const JID &jid, const std::string& oldName, const std::vector<std::string> oldGroups); + void handleOnJIDUpdated(const JID &jid, const std::string& oldName, const std::vector<std::string>& oldGroups); void handleStartChatRequest(const JID& contact); void handleChangeStatusRequest(StatusShow::Type show, const std::string &statusText); void handleShowOfflineToggled(bool state); |