Show news item in the ticker */
| 703 | |
| 704 | /** Show news item in the ticker */ |
| 705 | static void ShowTicker(NewsIterator ni) |
| 706 | { |
| 707 | if (_settings_client.sound.news_ticker) SndPlayFx(SND_16_NEWS_TICKER); |
| 708 | |
| 709 | _statusbar_news = ni; |
| 710 | InvalidateWindowData(WC_STATUS_BAR, 0, SBI_SHOW_TICKER); |
| 711 | } |
| 712 | |
| 713 | /** Initialize the news-items data structures */ |
| 714 | void InitNewsItemStructs() |
no test coverage detected