Skip to content

Commit

Permalink
Refactor logging statements for enter and exit edit mode
Browse files Browse the repository at this point in the history
Adjusted logging statements in the code to include the correct parameters for entering and exiting edit mode.
  • Loading branch information
forntoh committed Oct 24, 2024
1 parent 5932a31 commit ce85443
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ItemRangeBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ class ItemRangeBase : public MenuItem {
if (callback != NULL && !commitOnChange) {
callback(currentValue);
}
LOG("ItemRangeBase::exitEditMode"), currentValue);
LOG("ItemRangeBase::exitEditMode", currentValue);
return true;
case UP:
if (increment()) {
Expand All @@ -148,7 +148,7 @@ class ItemRangeBase : public MenuItem {
case ENTER:
renderer->setEditMode(true);
draw(renderer);
LOG("ItemRangeBase::enterEditMode"), currentValue);
LOG("ItemRangeBase::enterEditMode", currentValue);
return true;
default:
return false;
Expand Down

0 comments on commit ce85443

Please sign in to comment.