* Handle click on the entry in the Newspaper menu. * * @param index Menu entry clicked. * @return #CBF_NONE */
| 1040 | * @return #CBF_NONE |
| 1041 | */ |
| 1042 | static CallBackFunction MenuClickNewspaper(int index) |
| 1043 | { |
| 1044 | switch (index) { |
| 1045 | case 0: ShowLastNewsMessage(); break; |
| 1046 | case 1: ShowMessageHistory(); break; |
| 1047 | case 2: DeleteAllMessages(); break; |
| 1048 | } |
| 1049 | return CBF_NONE; |
| 1050 | } |
| 1051 | |
| 1052 | /* --- Help button menu --- */ |
| 1053 |
nothing calls this directly
no test coverage detected