Skip to content

Commit

Permalink
fix by est77: fixed Qt signal warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
dictoon committed Nov 18, 2013
1 parent 0c03813 commit 6b8a4c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/appleseed.studio/utility/inputwidgetproxies.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ string GroupBoxProxy::get() const
RadioButtonProxy::RadioButtonProxy(QRadioButton* radio_button)
: m_radio_button(radio_button)
{
connect(m_radio_button, SIGNAL(stateChanged(int)), SIGNAL(signal_changed()));
connect(m_radio_button, SIGNAL(toggled(bool)), SIGNAL(signal_changed()));
}

void RadioButtonProxy::set(const string& value)
Expand Down

0 comments on commit 6b8a4c0

Please sign in to comment.