summaryrefslogtreecommitdiffstats
path: root/src/Client/CommandParser.cpp
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2008-09-13 01:06:43 +0200
committerMatthias Schiffer <matthias@gamezock.de>2008-09-13 01:06:43 +0200
commit47d7a53099be598c26be4de63e9d8fe52c2e0e66 (patch)
tree247072eebdbe75af3f8db891ddd6766aeac2828c /src/Client/CommandParser.cpp
parente0a00eda958375aed3268afcba6cebb9c2a9908b (diff)
downloadmad-47d7a53099be598c26be4de63e9d8fe52c2e0e66.tar
mad-47d7a53099be598c26be4de63e9d8fe52c2e0e66.zip
CoreStatusRequest nach Client/Request/ verschoben
Diffstat (limited to 'src/Client/CommandParser.cpp')
-rw-r--r--src/Client/CommandParser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Client/CommandParser.cpp b/src/Client/CommandParser.cpp
index 22de6e9..3100466 100644
--- a/src/Client/CommandParser.cpp
+++ b/src/Client/CommandParser.cpp
@@ -18,7 +18,7 @@
*/
#include "CommandParser.h"
-#include <Common/Request/CoreStatusRequest.h>
+#include "Request/CoreStatusRequest.h"
#include <Common/Request/DisconnectRequest.h>
#include <iostream>
@@ -85,7 +85,7 @@ void CommandParser::helpCommand(const std::vector<std::string> &args) {
void CommandParser::statusCommand(const std::vector<std::string>&) {
activeRequests++;
- Common::Request::CoreStatusRequest::send(connection, *requestManager, sigc::mem_fun(this, &CommandParser::coreStatusRequestFinished));
+ Request::CoreStatusRequest::send(connection, *requestManager, sigc::mem_fun(this, &CommandParser::coreStatusRequestFinished));
}
void CommandParser::exitCommand(const std::vector<std::string>&) {