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:
authorKissaki <kissaki@gmx.de>2013-07-13 20:45:09 +0400
committerKissaki <kissaki@gmx.de>2013-07-13 20:45:09 +0400
commit9450d669413ae22f5f5a50354d2eb9026f00ce8d (patch)
treeccae80d2a73c6efb21cb2f10eac30384ed656d82 /src/murmur/RPC.cpp
parent84be1eb1623d8b23119966b743af01a8b8e63bd7 (diff)
Unify comment style.
* Adjust comments to unified JavaDoc-style comments
Diffstat (limited to 'src/murmur/RPC.cpp')
-rw-r--r--src/murmur/RPC.cpp22
1 files changed, 10 insertions, 12 deletions
diff --git a/src/murmur/RPC.cpp b/src/murmur/RPC.cpp
index c939c3375..4b68483c9 100644
--- a/src/murmur/RPC.cpp
+++ b/src/murmur/RPC.cpp
@@ -223,13 +223,12 @@ void Server::sendTextMessage(Channel *cChannel, ServerUser *pUser, bool tree, co
}
}
-/*!
- \fn void Server::setTempGroups(int userid, Channel *cChannel, const QStringList &groups)
- Sets the list of temporary groups the given userid is a member of. If no channel is given root will
- be targeted.
-
- If userid is negative the absolute value is a session id. If it is positive it is a registration id.
-*/
+/**
+ * Sets the list of temporary groups the given userid is a member of. If no channel is given root will
+ * be targeted.
+ *
+ * If userid is negative the absolute value is a session id. If it is positive it is a registration id.
+ */
void Server::setTempGroups(int userid, int sessionId, Channel *cChannel, const QStringList &groups) {
if (! cChannel)
cChannel = qhChannels.value(0);
@@ -257,11 +256,10 @@ void Server::setTempGroups(int userid, int sessionId, Channel *cChannel, const Q
clearACLCache(p);
}
-/*!
- \fn void Server::clearTempGroups(User *user, Channel *cChannel = NULL, bool recurse = true)
- Clears temporary group memberships for the given User. If no channel is given root will be targeted.
- If recursion is activated all temporary memberships in related channels will also be cleared.
-*/
+/**
+ * Clears temporary group memberships for the given User. If no channel is given root will be targeted.
+ * If recursion is activated all temporary memberships in related channels will also be cleared.
+ */
void Server::clearTempGroups(User *user, Channel *cChannel, bool recurse) {
QList<Channel*> qlChans;
if (! cChannel)