diff options
author | Peter Powell <petpow@saberuk.com> | 2013-05-20 20:15:50 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2013-06-06 01:45:04 +0100 |
commit | e01df6385ef2ad1c0a78ccdd08af9af3ce688264 (patch) | |
tree | a6bbf02d3ec75274fdf2a6e47c110c6b8506d9f7 /include/users.h | |
parent | ef3799a43a24f4b3da5e785765a6e4c01353845c (diff) |
Convert User::SendText to use std::string.
Diffstat (limited to 'include/users.h')
-rw-r--r-- | include/users.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/users.h b/include/users.h index 9f732f134..941e57667 100644 --- a/include/users.h +++ b/include/users.h @@ -601,7 +601,7 @@ class CoreExport User : public Extensible * @param LinePrefix text to prefix each complete line with * @param TextStream the text to send to the user */ - void SendText(const std::string &LinePrefix, std::stringstream &TextStream); + void SendText(const std::string& linePrefix, std::stringstream& textStream); /** Write to the user, routing the line if the user is remote. */ |