diff --git a/src/gui/weather.h b/src/gui/weather.h index 4f5d69013..79b12eba4 100644 --- a/src/gui/weather.h +++ b/src/gui/weather.h @@ -65,6 +65,10 @@ class CWeather void setCoords(std::string new_coords, std::string new_city = "Unknown"); void show(int x = 50, int y = 50); void hide(); + std::string getCity() + { + return city; + }; std::string getActTemp() { return to_string((int)(act_temp + 0.5));