| 4131 | } |
| 4132 | |
| 4133 | void EventBrowser::on_bookmark_clicked() |
| 4134 | { |
| 4135 | QModelIndex idx = ui->events->currentIndex(); |
| 4136 | |
| 4137 | if(idx.isValid()) |
| 4138 | { |
| 4139 | EventBookmark mark(GetSelectedEID(idx)); |
| 4140 | |
| 4141 | if(m_Ctx.GetBookmarks().contains(mark)) |
| 4142 | m_Ctx.RemoveBookmark(mark.eventId); |
| 4143 | else |
| 4144 | m_Ctx.SetBookmark(mark); |
| 4145 | } |
| 4146 | } |
| 4147 | |
| 4148 | void EventBrowser::on_timeActions_clicked() |
| 4149 | { |
nothing calls this directly
no test coverage detected