summaryrefslogtreecommitdiff
path: root/src/gui/widgets/textbox.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-08-30 16:06:19 +0300
committerAndrei Karas <akaras@inbox.ru>2013-08-30 16:59:12 +0300
commit60d90692e487948b77edcac63acbef34254cea5b (patch)
treec2ca72f720f835099bc65c2832d5c7df3d92abbd /src/gui/widgets/textbox.cpp
parent38fe5f43b5ac41e41debed4868e81b4b4bf839ac (diff)
downloadplus-60d90692e487948b77edcac63acbef34254cea5b.tar.gz
plus-60d90692e487948b77edcac63acbef34254cea5b.tar.bz2
plus-60d90692e487948b77edcac63acbef34254cea5b.tar.xz
plus-60d90692e487948b77edcac63acbef34254cea5b.zip
remove duplicate variables.
Diffstat (limited to 'src/gui/widgets/textbox.cpp')
-rw-r--r--src/gui/widgets/textbox.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/textbox.cpp b/src/gui/widgets/textbox.cpp
index 660655033..d38c3c9c9 100644
--- a/src/gui/widgets/textbox.cpp
+++ b/src/gui/widgets/textbox.cpp
@@ -167,7 +167,7 @@ void TextBox::setTextWrapped(const std::string &text, const int minDimension)
void TextBox::keyPressed(gcn::KeyEvent& keyEvent)
{
- const gcn::Key key = keyEvent.getKey();
+ const gcn::Key &key = keyEvent.getKey();
const int action = static_cast<KeyEvent*>(&keyEvent)->getActionId();
switch (action)