summaryrefslogtreecommitdiff
path: root/protocols/Xfire/src/recvoldversionpacket.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2015-08-11 13:33:42 +0000
committerGeorge Hazan <george.hazan@gmail.com>2015-08-11 13:33:42 +0000
commit85bd008c039eb1d93894e94fba9d158a42a71a12 (patch)
tree2d72d10759f6928e9e4b960175d2de01b5cf7e12 /protocols/Xfire/src/recvoldversionpacket.cpp
parent222802c2986dcaf029fdfb828b7679bdabfa7bb2 (diff)
massive code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@14910 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Xfire/src/recvoldversionpacket.cpp')
-rw-r--r--protocols/Xfire/src/recvoldversionpacket.cpp21
1 files changed, 11 insertions, 10 deletions
diff --git a/protocols/Xfire/src/recvoldversionpacket.cpp b/protocols/Xfire/src/recvoldversionpacket.cpp
index 635d69352a..200bda04df 100644
--- a/protocols/Xfire/src/recvoldversionpacket.cpp
+++ b/protocols/Xfire/src/recvoldversionpacket.cpp
@@ -26,17 +26,18 @@
#include "variablevalue.h"
#include "xdebug.h"
-#include <vector>
-#include <string>
-namespace xfirelib {
- class RecvOldVersionPacket;
+namespace xfirelib
+{
+ class RecvOldVersionPacket;
- RecvOldVersionPacket::RecvOldVersionPacket() : XFireRecvPacketContent() {
- }
+ RecvOldVersionPacket::RecvOldVersionPacket() : XFireRecvPacketContent()
+ {
+ }
- void RecvOldVersionPacket::parseContent(char *buf, int length, int numberOfAtts) {
- //aktuelle version
- this->newversion=buf[12];
- }
+ void RecvOldVersionPacket::parseContent(char *buf, int, int)
+ {
+ //aktuelle version
+ this->newversion = buf[12];
+ }
};