Rewrite comments to comply with codebase conventions

Signed-off-by: CasparNuel <73889285+CasparNuel@users.noreply.github.com>
This commit is contained in:
CasparNuel 2021-08-23 23:54:56 +02:00
parent 6ace822e24
commit 77d9c680e5

View file

@ -192,8 +192,8 @@ drape_ptr<df::UserPointMark::SymbolNameZoomInfo> RouteMarkPoint::GetSymbolNames(
case 0: name = "route-point-a"; break;
case 1: name = "route-point-b"; break;
case 2: name = "route-point-c"; break;
default: name = "route-point-c"; break; // This should be replaced with the "+" icon
// TODO: Properly add icons for other letters/numbers after C.
// TODO: Properly add icons for other letters/numbers after C.
default: name = "route-point-c"; break;
}
break;
}
@ -203,7 +203,8 @@ drape_ptr<df::UserPointMark::SymbolNameZoomInfo> RouteMarkPoint::GetSymbolNames(
return symbol;
}
size_t const RoutePointsLayout::kMaxIntermediatePointsCount = 100; // This should be tested if the routing algorithm can handle this
// This should be tested if the routing algorithm can handle this
size_t const RoutePointsLayout::kMaxIntermediatePointsCount = 100;
RoutePointsLayout::RoutePointsLayout(BookmarkManager & manager)
: m_manager(manager)