summaryrefslogtreecommitdiffstats
path: root/src/Client/InformationManager.cpp
diff options
context:
space:
mode:
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();