Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorvald Natvig <slicer@users.sourceforge.net>2011-06-11 04:58:17 +0400
committerThorvald Natvig <slicer@users.sourceforge.net>2011-06-11 04:58:17 +0400
commit7de5ebc18fbd69dad784a34008df487fd4901407 (patch)
tree4176a46d3c2a6b96b679ae5ac39de363cb4a63a3 /src/murmur/MurmurIce.cpp
parentc581e0e11264019ff8a5ffbbca560ce21ec4678e (diff)
Indent, changelog, submodule and language update
Diffstat (limited to 'src/murmur/MurmurIce.cpp')
-rw-r--r--src/murmur/MurmurIce.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/murmur/MurmurIce.cpp b/src/murmur/MurmurIce.cpp
index 424156540..0d272ae06 100644
--- a/src/murmur/MurmurIce.cpp
+++ b/src/murmur/MurmurIce.cpp
@@ -180,13 +180,13 @@ static void infoToInfo(const Murmur::UserInfoMap &im, QMap<int, QString> &info)
static void textmessageToTextmessage(const ::TextMessage &tm, Murmur::TextMessage &tmdst) {
tmdst.text = u8(tm.qsText);
- foreach (unsigned int i, tm.qlSessions)
+ foreach(unsigned int i, tm.qlSessions)
tmdst.sessions.push_back(i);
-
- foreach (unsigned int i, tm.qlChannels)
+
+ foreach(unsigned int i, tm.qlChannels)
tmdst.channels.push_back(i);
-
- foreach (unsigned int i, tm.qlTrees)
+
+ foreach(unsigned int i, tm.qlTrees)
tmdst.trees.push_back(i);
}