diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-05-24 21:31:00 +0200 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-05-24 21:37:38 +0200 |
commit | cc28b48adcc8ef3b584312e598035c34384dcf78 (patch) | |
tree | 37987edf34e2c916def7ee2abc634f5ad0aec7da /src/gui/widgets/chattab.h | |
parent | c354af888779c9038cedf64c1502574eb8b29399 (diff) | |
download | mana-client-cc28b48adcc8ef3b584312e598035c34384dcf78.tar.gz mana-client-cc28b48adcc8ef3b584312e598035c34384dcf78.tar.bz2 mana-client-cc28b48adcc8ef3b584312e598035c34384dcf78.tar.xz mana-client-cc28b48adcc8ef3b584312e598035c34384dcf78.zip |
Made some parameters const references like they should be
Diffstat (limited to 'src/gui/widgets/chattab.h')
-rw-r--r-- | src/gui/widgets/chattab.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/chattab.h b/src/gui/widgets/chattab.h index dc0d3047..4cb6a58f 100644 --- a/src/gui/widgets/chattab.h +++ b/src/gui/widgets/chattab.h @@ -77,7 +77,7 @@ class ChatTab : public Tab * * @param msg The message text which is to be sent. */ - void chatInput(std::string &msg); + void chatInput(const std::string &msg); /** * Scrolls the chat window |