| 372 | } |
| 373 | |
| 374 | void BookmarkCategory::SetAuthor(std::string const & name, std::string const & id) |
| 375 | { |
| 376 | if (m_data.m_authorName == name && m_data.m_authorId == id) |
| 377 | return; |
| 378 | |
| 379 | SetDirty(true /* updateModificationTime */); |
| 380 | m_data.m_authorName = name; |
| 381 | m_data.m_authorId = id; |
| 382 | } |
| 383 | |
| 384 | void BookmarkCategory::SetAccessRules(kml::AccessRules accessRules) |
| 385 | { |