| 150 | } |
| 151 | |
| 152 | void FormWidgetsController::dropRadioButtons() |
| 153 | { |
| 154 | QList<RadioData>::iterator it = m_radios.begin(), itEnd = m_radios.end(); |
| 155 | for (; it != itEnd; ++it) { |
| 156 | delete (*it).group; |
| 157 | } |
| 158 | m_radios.clear(); |
| 159 | m_buttons.clear(); |
| 160 | } |
| 161 | |
| 162 | bool FormWidgetsController::canUndo() |
| 163 | { |
no test coverage detected