Initialize the news-items data structures */
| 712 | |
| 713 | /** Initialize the news-items data structures */ |
| 714 | void InitNewsItemStructs() |
| 715 | { |
| 716 | _news.clear(); |
| 717 | _forced_news = std::end(_news); |
| 718 | _current_news = std::end(_news); |
| 719 | _statusbar_news = std::end(_news); |
| 720 | NewsWindow::duration = 0; |
| 721 | } |
| 722 | |
| 723 | /** |
| 724 | * Are we ready to show another ticker item? |
no test coverage detected