diff options
Diffstat (limited to 'src/guichan')
-rw-r--r-- | src/guichan/include/guichan/widgets/textbox.hpp | 2 | ||||
-rw-r--r-- | src/guichan/widgets/textbox.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/guichan/include/guichan/widgets/textbox.hpp b/src/guichan/include/guichan/widgets/textbox.hpp index 6393306d8..ef12e36fe 100644 --- a/src/guichan/include/guichan/widgets/textbox.hpp +++ b/src/guichan/include/guichan/widgets/textbox.hpp @@ -203,7 +203,7 @@ namespace gcn * * @param row The row to add. */ - virtual void addRow(const std::string row); + virtual void addRow(const std::string &row); /** * Checks if the text box is opaque. An opaque text box will draw diff --git a/src/guichan/widgets/textbox.cpp b/src/guichan/widgets/textbox.cpp index fc133ba9b..2c6066976 100644 --- a/src/guichan/widgets/textbox.cpp +++ b/src/guichan/widgets/textbox.cpp @@ -319,7 +319,7 @@ namespace gcn return mEditable; } - void TextBox::addRow(const std::string row) + void TextBox::addRow(const std::string &row) { mTextRows.push_back(row); adjustSize(); |