--- a/src/widgets.h Wed Oct 16 16:40:42 2013 +0300 +++ b/src/widgets.h Wed Oct 16 16:47:40 2013 +0300 @@ -40,7 +40,7 @@ { Q_OBJECT public: - typedef List<QRadioButton*>::Iterator Iterator; + typedef QList<QRadioButton*>::Iterator Iterator; explicit RadioGroup() { init (Qt::Vertical); @@ -75,8 +75,8 @@ void valueChanged (int val); private: - List<QRadioButton*> m_objects; - List<QBoxLayout*> m_layouts; + QList<QRadioButton*> m_objects; + QList<QBoxLayout*> m_layouts; QBoxLayout* m_coreLayout; QBoxLayout* m_currentLayout; bool m_vert;