Skip to content

Commit

Permalink
clang3
Browse files Browse the repository at this point in the history
  • Loading branch information
ihakov2 committed Oct 26, 2023
1 parent 6573d34 commit 77acfbb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Adafruit_GFX.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1729,7 +1729,7 @@ bool Adafruit_GFX_Button::justReleased() { return (!currstate && laststate); }
/**************************************************************************/
/*!
@brief Set label to button object.
@param label char pointer to new button label
@param label char pointer to new button label
*/
void Adafruit_GFX_Button::setLabel(char *label) {
strncpy(_label, label, 9);
Expand All @@ -1745,9 +1745,9 @@ char *Adafruit_GFX_Button::getLabel() { return _label; }

/**********************************************************************/
/*!
@brief Set the button to enable/disable
@brief Set the button to enable/disable
@param enable boolean true to enable, false to disable
@param fillColor uint16_t set button fillColor
@param fillColor uint16_t set button fillColor
*/
/**********************************************************************/
void Adafruit_GFX_Button::setEnabled(bool enable, uint16_t fillColor) {
Expand Down

0 comments on commit 77acfbb

Please sign in to comment.