forked from organicmaps/organicmaps
If there is no rating, don't draw the star symbol.
This commit is contained in:
parent
5ea305344a
commit
0fd32dfdac
1 changed files with 6 additions and 3 deletions
|
@ -247,9 +247,12 @@ string BaseApplyFeature::ExtractHotelInfo() const
|
|||
return "";
|
||||
|
||||
ostringstream out;
|
||||
out << m_hotelData.m_rating << kStarSymbol;
|
||||
if (m_hotelData.m_priceCategory != 0)
|
||||
out << " ";
|
||||
if (!m_hotelData.m_rating.empty())
|
||||
{
|
||||
out << m_hotelData.m_rating << kStarSymbol;
|
||||
if (m_hotelData.m_priceCategory != 0)
|
||||
out << " ";
|
||||
}
|
||||
for (int i = 0; i < m_hotelData.m_priceCategory; i++)
|
||||
out << kPriceSymbol;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue