If there is no rating, don't draw the star symbol.

This commit is contained in:
Daria Volvenkova 2016-06-22 18:01:30 +03:00 committed by Vladimir Byko-Ianko
parent 5ea305344a
commit 0fd32dfdac

View file

@ -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;