122 return *this; |
122 return *this; |
123 } |
123 } |
124 |
124 |
125 // ============================================================================= |
125 // ============================================================================= |
126 // ----------------------------------------------------------------------------- |
126 // ----------------------------------------------------------------------------- |
127 void RadioGroup::setCurrentRow (uint row) |
127 void RadioGroup::setCurrentRow (int row) |
128 { m_currentLayout = m_layouts[row]; |
128 { m_currentLayout = m_layouts[row]; |
129 } |
129 } |
130 |
130 |
131 // ============================================================================= |
131 // ============================================================================= |
132 // ----------------------------------------------------------------------------- |
132 // ----------------------------------------------------------------------------- |
140 { m_buttonGroup->button (val)->setChecked (true); |
140 { m_buttonGroup->button (val)->setChecked (true); |
141 } |
141 } |
142 |
142 |
143 // ============================================================================= |
143 // ============================================================================= |
144 // ----------------------------------------------------------------------------- |
144 // ----------------------------------------------------------------------------- |
145 QRadioButton* RadioGroup::operator[] (uint n) const |
145 QRadioButton* RadioGroup::operator[] (int n) const |
146 { return m_objects[n]; |
146 { return m_objects[n]; |
147 } |
147 } |
148 |
148 |
149 // ============================================================================= |
149 // ============================================================================= |
150 // ----------------------------------------------------------------------------- |
150 // ----------------------------------------------------------------------------- |