summaryrefslogtreecommitdiff
path: root/include/commands.h
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2011-02-04 15:30:31 -0500
committerAdam <Adam@anope.org>2011-02-04 15:30:31 -0500
commit08583dc107974252312fb7c87532c9deb68e7f63 (patch)
tree0c42ec7422752cabd8352b49be976b4dc100c56c /include/commands.h
parentc362a1e077d5ede9eadbe79483f2a755b5883e9a (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.h2
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.