|
@@ -303,7 +303,7 @@ public:
|
303
|
303
|
#if ENABLED(STATUS_MESSAGE_SCROLLING)
|
304
|
304
|
static uint8_t status_scroll_offset;
|
305
|
305
|
#endif
|
306
|
|
- static bool hasstatus();
|
|
306
|
+ static bool has_status();
|
307
|
307
|
|
308
|
308
|
static uint8_t lcd_status_update_delay;
|
309
|
309
|
static uint8_t status_message_level; // Higher levels block lower levels
|
|
@@ -346,7 +346,7 @@ public:
|
346
|
346
|
|
347
|
347
|
static void refresh() {}
|
348
|
348
|
static inline void reset_alert_level() {}
|
349
|
|
- static constexpr bool hasstatus() { return true; }
|
|
349
|
+ static constexpr bool has_status() { return true; }
|
350
|
350
|
|
351
|
351
|
#endif
|
352
|
352
|
|
|
@@ -366,7 +366,7 @@ public:
|
366
|
366
|
static inline void status_printf_P(const uint8_t level, PGM_P const fmt, ...) { UNUSED(level); UNUSED(fmt); }
|
367
|
367
|
static inline void reset_status() {}
|
368
|
368
|
static inline void reset_alert_level() {}
|
369
|
|
- static constexpr bool hasstatus() { return false; }
|
|
369
|
+ static constexpr bool has_status() { return false; }
|
370
|
370
|
|
371
|
371
|
#endif
|
372
|
372
|
|