mirror of
https://github.com/esphome/esphome.git
synced 2024-12-12 08:24:55 +01:00
Fixed const-ness of TAG in vertical_stack and horizontal_stack
This commit is contained in:
parent
447e3bdce7
commit
d6c9a8133e
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@
|
||||||
namespace esphome {
|
namespace esphome {
|
||||||
namespace graphical_layout {
|
namespace graphical_layout {
|
||||||
|
|
||||||
static const char *TAG = "horizontalstack";
|
static const char *const TAG = "horizontalstack";
|
||||||
|
|
||||||
void HorizontalStack::dump_config(int indent_depth, int additional_level_depth) {
|
void HorizontalStack::dump_config(int indent_depth, int additional_level_depth) {
|
||||||
ESP_LOGCONFIG(TAG, "%*sItem Padding: %i", indent_depth, "", this->item_padding_);
|
ESP_LOGCONFIG(TAG, "%*sItem Padding: %i", indent_depth, "", this->item_padding_);
|
||||||
|
|
Loading…
Reference in a new issue