| 283 | } |
| 284 | |
| 285 | void ztextbox::activate() |
| 286 | { |
| 287 | if (flag.active) |
| 288 | { |
| 289 | return; |
| 290 | } |
| 291 | |
| 292 | flag.active = true; |
| 293 | flag.visible = true; |
| 294 | |
| 295 | prev = NULL; |
| 296 | next = head_active; |
| 297 | |
| 298 | if (head_active) |
| 299 | { |
| 300 | head_active->prev = this; |
| 301 | } |
| 302 | |
| 303 | head_active = this; |
| 304 | } |
| 305 | |
| 306 | void ztextbox::deactivate() |
| 307 | { |
no outgoing calls
no test coverage detected