diff options
author | Adam <Adam@anope.org> | 2011-02-04 15:30:31 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-02-04 15:30:31 -0500 |
commit | 08583dc107974252312fb7c87532c9deb68e7f63 (patch) | |
tree | 0c42ec7422752cabd8352b49be976b4dc100c56c /include/commands.h | |
parent | c362a1e077d5ede9eadbe79483f2a755b5883e9a (diff) |
Moved the language strings which are only used once
out of the core and into the modules that use them.
Diffstat (limited to 'include/commands.h')
-rw-r--r-- | include/commands.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/commands.h b/include/commands.h index b05c69cbe..2b3120f29 100644 --- a/include/commands.h +++ b/include/commands.h @@ -71,8 +71,8 @@ struct CoreExport CommandSource ~CommandSource(); - void Reply(LanguageString message, ...); void Reply(const char *message, ...); + void Reply(const Anope::string &message); }; /** Every services command is a class, inheriting from Command. |