summaryrefslogtreecommitdiffstats
path: root/addon
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2014-06-07 22:35:03 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2014-06-07 22:35:03 (GMT)
commit6f5748e822b009cbe82cc1df8eea43e4769bc44b (patch)
tree2e2a6523b67fd986163d17cbddf464cca7643ea8 /addon
parent2cc3b18da39bde323c5739483e507a133e93ac22 (diff)
downloadDoxygen-6f5748e822b009cbe82cc1df8eea43e4769bc44b.zip
Doxygen-6f5748e822b009cbe82cc1df8eea43e4769bc44b.tar.gz
Doxygen-6f5748e822b009cbe82cc1df8eea43e4769bc44b.tar.bz2
Bug 730887 - [PATCH] Fix potential copy and paste error in inputstring.cpp
Diffstat (limited to 'addon')
-rw-r--r--addon/doxywizard/inputstring.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/addon/doxywizard/inputstring.cpp b/addon/doxywizard/inputstring.cpp
index ad258f7..48ede55 100644
--- a/addon/doxywizard/inputstring.cpp
+++ b/addon/doxywizard/inputstring.cpp
@@ -167,7 +167,7 @@ void InputString::setEnabled(bool state)
{
m_lab->setEnabled(state);
if (m_le) m_le->setEnabled(state);
- if (m_im) m_le->setEnabled(state);
+ if (m_im) m_im->setEnabled(state);
if (m_br) m_br->setEnabled(state);
if (m_com) m_com->setEnabled(state);
updateDefault();