Simple Weather Service - code cleaning and improvements

Rename Symbols::cloud_meatball to Symbols::cloudMeatball.
This commit is contained in:
Jean-François Milants 2023-12-19 15:41:06 +01:00 committed by JF
parent d29eb1ea99
commit 199aefc617
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ namespace Pinetime {
static constexpr const char* cloudShowersHeavy = "\xEF\x9D\x80";
static constexpr const char* smog = "\xEF\x9D\x9F";
static constexpr const char* cloud = "\xEF\x83\x82";
static constexpr const char* cloud_meatball = "\xEF\x9C\xBB";
static constexpr const char* cloudMeatball = "\xEF\x9C\xBB";
static constexpr const char* bolt = "\xEF\x83\xA7";
static constexpr const char* snowflake = "\xEF\x8B\x9C";
static constexpr const char* ban = "\xEF\x81\x9E";

View File

@ -55,7 +55,7 @@ namespace {
return Symbols::cloud;
break;
case Pinetime::Controllers::SimpleWeatherService::Icons::BrokenClouds:
return Symbols::cloud_meatball;
return Symbols::cloudMeatball;
break;
case Pinetime::Controllers::SimpleWeatherService::Icons::Thunderstorm:
return Symbols::bolt;