Fixed default bookmark symbol name

This commit is contained in:
Alex Zolotarev 2012-07-08 01:45:42 -07:00 committed by Alex Zolotarev
parent d533028ca2
commit e9554854c1
2 changed files with 4 additions and 4 deletions

View file

@ -110,9 +110,9 @@ UNIT_TEST(Bookmarks_Getting)
// This is not correct because Framework::OnSize doesn't work until SetRenderPolicy is called.
//TEST(m2::AlmostEqual(m2::PointD(400, 200), pixC), (pixC));
fm.AddBookmark("cat1", Bookmark(m2::PointD(38, 20), "1", "red"));
fm.AddBookmark("cat2", Bookmark(m2::PointD(41, 20), "2", "red"));
fm.AddBookmark("cat3", Bookmark(m2::PointD(41, 40), "3", "red"));
fm.AddBookmark("cat1", Bookmark(m2::PointD(38, 20), "1", "placemark-red"));
fm.AddBookmark("cat2", Bookmark(m2::PointD(41, 20), "2", "placemark-red"));
fm.AddBookmark("cat3", Bookmark(m2::PointD(41, 40), "3", "placemark-red"));
Bookmark const * bm = fm.GetBookmark(pixC, 1.0);
TEST(bm != 0, ());

View file

@ -131,7 +131,7 @@ void SearchPanel::OnSearchResult(ResultsT * res)
if (e.GetResultType() == ResultT::RESULT_FEATURE)
{
// For debug purposes: add bookmarks for search results
frm.AddBookmark("Search", Bookmark(e.GetFeatureCenter(), e.GetString(), "red"));
frm.AddBookmark("Search", Bookmark(e.GetFeatureCenter(), e.GetString(), "placemark-red"));
m_pTable->setItem(rowCount, 0,
create_item(QString::fromUtf8(e.GetFeatureType())));