diff -r 6e80f038e8df -r c4b96bc41298 src/widgets.cpp --- a/src/widgets.cpp Fri May 24 04:34:20 2013 +0300 +++ b/src/widgets.cpp Fri May 24 15:23:56 2013 +0300 @@ -127,11 +127,11 @@ emit valueChanged (newid); } -RadioBox::iter RadioBox::begin() { +RadioBox::it RadioBox::begin() { return m_objects.begin (); } -RadioBox::iter RadioBox::end() { +RadioBox::it RadioBox::end() { return m_objects.end (); } @@ -154,8 +154,8 @@ connect (box, SIGNAL (stateChanged (int)), this, SLOT (buttonChanged ())); } -std::vector CheckBoxGroup::checkedValues () const { - std::vector vals; +vector CheckBoxGroup::checkedValues () const { + vector vals; for (const auto& kv : m_vals) if (kv.second->isChecked ())