summaryrefslogtreecommitdiffstats
path: root/src/Common/Request.cpp
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2009-09-04 00:24:42 +0200
committerMatthias Schiffer <matthias@gamezock.de>2009-09-04 00:24:42 +0200
commit1eb9f4df776adc5dc5cf74a587288199bbf8b703 (patch)
tree42c3950b6d69c65f859db0a4d290c5408597a7bd /src/Common/Request.cpp
parent197582bcf7458cafb571fde7d37ef4415d0d8f4a (diff)
downloadmad-1eb9f4df776adc5dc5cf74a587288199bbf8b703.tar
mad-1eb9f4df776adc5dc5cf74a587288199bbf8b703.zip
Renamed: XmlPacket -> XmlData
Diffstat (limited to 'src/Common/Request.cpp')
-rw-r--r--src/Common/Request.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Common/Request.cpp b/src/Common/Request.cpp
index 9325d46..0edfcfd 100644
--- a/src/Common/Request.cpp
+++ b/src/Common/Request.cpp
@@ -22,7 +22,7 @@
namespace Mad {
namespace Common {
-void Request::handlePacket(boost::shared_ptr<const XmlPacket> packet) {
+void Request::handlePacket(boost::shared_ptr<const XmlData> packet) {
if(packet->getType() == "Error") {
signalFinished(Core::Exception(packet->get<const std::string&>("Where"), static_cast<Core::Exception::ErrorCode>(packet->get<long>("ErrorCode")),
packet->get<long>("SubCode"), packet->get<long>("SubSubCode")));