--- 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<int> CheckBoxGroup::checkedValues () const { - std::vector<int> vals; +vector<int> CheckBoxGroup::checkedValues () const { + vector<int> vals; for (const auto& kv : m_vals) if (kv.second->isChecked ())