| 204 | } |
| 205 | |
| 206 | const HTMLField* CHTMLContainer::GetActiveField() const |
| 207 | { |
| 208 | if (_activeField < 0) |
| 209 | { |
| 210 | return nullptr; |
| 211 | } |
| 212 | if (_sections.Size() <= 0) |
| 213 | { |
| 214 | return nullptr; |
| 215 | } |
| 216 | const HTMLSection& section = _sections[_currentSection]; |
| 217 | return §ion.fields[_activeField]; |
| 218 | } |
| 219 | |
| 220 | void CHTMLContainer::Init() |
| 221 | { |