weather: don't add "°C" to temperatures

Origin commit data
------------------
Commit: e67740f0ce
Author: vanhofen <vanhofen@gmx.de>
Date: 2019-03-20 (Wed, 20 Mar 2019)

Origin message was:
------------------
- weather: don't add "°C" to temperatures
This commit is contained in:
vanhofen
2019-03-20 22:42:39 +01:00
parent cfe55313a0
commit 9e019a4c78

View File

@@ -67,11 +67,11 @@ class CWeather
void hide();
std::string getActTemp()
{
return to_string((int)(act_temp + 0.5)) + "°C";
return to_string((int)(act_temp + 0.5));
};
std::string getForecastTemp(int i = 0)
{
return to_string((int)(v_forecast[i].max_temp + 0.5)) + "°C";
return to_string((int)(v_forecast[i].max_temp + 0.5));
};
std::string getActIcon()
{