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:
authorJamie Fraser <jamie.f@mumbledog.com>2011-04-03 02:51:41 +0400
committerStefan Hacker <dd0t@users.sourceforge.net>2011-04-08 04:38:32 +0400
commitbd690db64560cd1785c9aaed86547ffe681b60db (patch)
tree0c0d2e3a0aec81f7dbf891960e76bf0f5c13d2cd /src/murmur/Server.h
parent1d832d56ff0db9ccc7868d634759a1e91b46bc7d (diff)
Fixed up Otto's patch (#2911421), mostly style stuff. Changed int -> uint and iterators to foreach()
Diffstat (limited to 'src/murmur/Server.h')
-rw-r--r--src/murmur/Server.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/murmur/Server.h b/src/murmur/Server.h
index 35022252d..8c70cc01e 100644
--- a/src/murmur/Server.h
+++ b/src/murmur/Server.h
@@ -50,10 +50,10 @@ class PacketDataStream;
class ServerUser;
struct TextMessage {
- QList<int> sessions;
- QList<int> channels;
- QList<int> trees;
- QString text;
+ QList<unsigned int> qlSessions;
+ QList<unsigned int> qlChannels;
+ QList<unsigned int> qlTrees;
+ QString qsText;
};
class LogEmitter : public QObject {