| 3211 | } |
| 3212 | |
| 3213 | bool BookmarkManager::AreAllCategoriesEmpty() const |
| 3214 | { |
| 3215 | CHECK_THREAD_CHECKER(m_threadChecker, ()); |
| 3216 | for (auto const & c : m_categories) |
| 3217 | if (!c.second->IsEmpty()) |
| 3218 | return false; |
| 3219 | return true; |
| 3220 | } |
| 3221 | |
| 3222 | bool BookmarkManager::IsCategoryEmpty(kml::MarkGroupId categoryId) const |
| 3223 | { |