Miscellaneous LCD code renaming, reordering (#12430)

* Move special characters to language.h
* Apply some naming standards
* Clean up menu item draw functions
* Rename some Temperature methods
* UI => ExtUI
This commit is contained in:
Scott Lahteine
2018-11-14 13:13:51 -06:00
committed by GitHub
parent edfd106bc5
commit d82c350de7
17 changed files with 197 additions and 210 deletions

View File

@@ -33,7 +33,7 @@
void GcodeSuite::M75() {
print_job_timer.start();
#if ENABLED(EXTENSIBLE_UI)
UI::onPrintTimerStarted();
ExtUI::onPrintTimerStarted();
#endif
}
@@ -43,7 +43,7 @@ void GcodeSuite::M75() {
void GcodeSuite::M76() {
print_job_timer.pause();
#if ENABLED(EXTENSIBLE_UI)
UI::onPrintTimerPaused();
ExtUI::onPrintTimerPaused();
#endif
}
@@ -53,7 +53,7 @@ void GcodeSuite::M76() {
void GcodeSuite::M77() {
print_job_timer.stop();
#if ENABLED(EXTENSIBLE_UI)
UI::onPrintTimerStopped();
ExtUI::onPrintTimerStopped();
#endif
}