summaryrefslogtreecommitdiffstats
path: root/src/Client/InformationManager.cpp
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2009-03-04 23:14:34 +0100
committerMatthias Schiffer <matthias@gamezock.de>2009-03-04 23:14:34 +0100
commitde5fa3867791bf4bf84a52de8cd09821f9ce28ab (patch)
treec343a7fcdeabe9f982c968d5241d672c351942a7 /src/Client/InformationManager.cpp
parentc316a3115bf790fb623f0765dd6b04f781af5b51 (diff)
downloadmad-de5fa3867791bf4bf84a52de8cd09821f9ce28ab.tar
mad-de5fa3867791bf4bf84a52de8cd09821f9ce28ab.zip
XmlRequest{,Handler} in Request{,Handler} umbenannt
Diffstat (limited to 'src/Client/InformationManager.cpp')
-rw-r--r--src/Client/InformationManager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Client/InformationManager.cpp b/src/Client/InformationManager.cpp
index 616e09b..cafe2fa 100644
--- a/src/Client/InformationManager.cpp
+++ b/src/Client/InformationManager.cpp
@@ -72,7 +72,7 @@ void InformationManager::updateDaemonList(Net::Connection *con) {
return;
Common::RequestManager::get()->sendRequest(con,
- std::auto_ptr<Common::XmlRequest>(
+ std::auto_ptr<Common::Request>(
new Requests::DaemonListRequest(sigc::mem_fun(this, &InformationManager::daemonListRequestFinished))
)
);
@@ -80,7 +80,7 @@ void InformationManager::updateDaemonList(Net::Connection *con) {
updating = true;
}
-void InformationManager::daemonListRequestFinished(const Common::XmlRequest &request) {
+void InformationManager::daemonListRequestFinished(const Common::Request &request) {
try {
const Common::XmlPacket &packet = request.getResult();