Cancels search query by |handle|.
| 41 | |
| 42 | // Cancels search query by |handle|. |
| 43 | void CancelQuery(weak_ptr<ProcessorHandle> & handle) |
| 44 | { |
| 45 | if (auto queryHandle = handle.lock()) |
| 46 | queryHandle->Cancel(); |
| 47 | handle.reset(); |
| 48 | } |
| 49 | |
| 50 | bookmarks::Id KmlMarkIdToSearchBookmarkId(kml::MarkId id) |
| 51 | { |
no test coverage detected