Skip to content

Commit e9ebdd7

Browse files
committed
Simple Weather Service - code cleaning and improvements
Rename Symbols::cloud_meatball to Symbols::cloudMeatball.
1 parent 1daecd2 commit e9ebdd7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/displayapp/screens/Symbols.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ namespace Pinetime {
4545
static constexpr const char* cloudShowersHeavy = "\xEF\x9D\x80";
4646
static constexpr const char* smog = "\xEF\x9D\x9F";
4747
static constexpr const char* cloud = "\xEF\x83\x82";
48-
static constexpr const char* cloud_meatball = "\xEF\x9C\xBB";
48+
static constexpr const char* cloudMeatball = "\xEF\x9C\xBB";
4949
static constexpr const char* bolt = "\xEF\x83\xA7";
5050
static constexpr const char* snowflake = "\xEF\x8B\x9C";
5151
static constexpr const char* ban = "\xEF\x81\x9E";

src/displayapp/screens/WatchFacePineTimeStyle.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ namespace {
5555
return Symbols::cloud;
5656
break;
5757
case Pinetime::Controllers::SimpleWeatherService::Icons::BrokenClouds:
58-
return Symbols::cloud_meatball;
58+
return Symbols::cloudMeatball;
5959
break;
6060
case Pinetime::Controllers::SimpleWeatherService::Icons::Thunderstorm:
6161
return Symbols::bolt;

0 commit comments

Comments
 (0)