Skip to content

Commit

Permalink
Bug 730887 - [PATCH] Fix potential copy and paste error in inputstrin…
Browse files Browse the repository at this point in the history
…g.cpp
  • Loading branch information
Dimitri van Heesch committed Jun 7, 2014
1 parent 2cc3b18 commit 6f5748e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addon/doxywizard/inputstring.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 6f5748e

Please sign in to comment.