summaryrefslogtreecommitdiffstats
path: root/src/Client/SystemCommands.h
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2009-09-27 19:58:24 +0200
committerMatthias Schiffer <matthias@gamezock.de>2009-09-27 19:58:24 +0200
commitb40ba0cf91603b695f1f2380cbd39966a458f22f (patch)
tree1fec48ddc59eb1392fac38495b230e4b2cbf7528 /src/Client/SystemCommands.h
parente1d8490f0654a3da0b900407d80d91d8d0da68c8 (diff)
downloadmad-b40ba0cf91603b695f1f2380cbd39966a458f22f.tar
mad-b40ba0cf91603b695f1f2380cbd39966a458f22f.zip
Use Unicode-aware String class instead of std::string
Diffstat (limited to 'src/Client/SystemCommands.h')
-rw-r--r--src/Client/SystemCommands.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Client/SystemCommands.h b/src/Client/SystemCommands.h
index ba8c361..fa2b63a 100644
--- a/src/Client/SystemCommands.h
+++ b/src/Client/SystemCommands.h
@@ -41,10 +41,10 @@ class MAD_CLIENT_EXPORT SystemCommands {
static void printHostStatus(boost::shared_ptr<const Common::XmlData> &packet);
public:
- static void fsinfoCommand(CommandParser *commandParser, const std::vector<std::string> &args);
- static void rebootCommand(CommandParser *commandParser, const std::vector<std::string> &args);
- static void shutdownCommand(CommandParser *commandParser, const std::vector<std::string> &args);
- static void statusCommand(CommandParser *commandParser, const std::vector<std::string> &args);
+ static void fsinfoCommand(CommandParser *commandParser, const std::vector<Core::String> &args);
+ static void rebootCommand(CommandParser *commandParser, const std::vector<Core::String> &args);
+ static void shutdownCommand(CommandParser *commandParser, const std::vector<Core::String> &args);
+ static void statusCommand(CommandParser *commandParser, const std::vector<Core::String> &args);
};
}