Marlin icon indicating copy to clipboard operation
Marlin copied to clipboard

Update marlinui.h/cpp to match args

Open classicrocker883 opened this issue 1 year ago • 0 comments

Description

A couple functions do not have their arguments matching. This updates them to be alike.

ex.

-  void MarlinUI::_set_status(const char * const cstr, const bool, const bool pgm) {
-    host_notify(cstr);
  }
+  void MarlinUI::_set_status(const char * const ustr, const bool, const bool pgm) {
+    host_notify(ustr);
  }

Requirements

Benefits

Configurations

Related Issues

classicrocker883 avatar May 02 '24 09:05 classicrocker883