Code styling: remove whitespaces between parenthesis

This commit is contained in:
Térence Clastres 2018-08-15 11:48:37 +02:00 committed by Paul Davis
parent 7c6c8ac270
commit 4122ff891c
2 changed files with 6 additions and 6 deletions

View file

@ -410,9 +410,9 @@ LaunchControlXL::button_track_mode(TrackMode state)
TrackStateButton* solo = static_cast<TrackStateButton*>(id_note_button_map[Solo]);
TrackStateButton* record = static_cast<TrackStateButton*>(id_note_button_map[Record]);
write(mute->state_msg( (state == TrackMute) ));
write(solo->state_msg( (state == TrackSolo) ));
write(record->state_msg( (state == TrackRecord) ));
write(mute->state_msg((state == TrackMute)));
write(solo->state_msg((state == TrackSolo)));
write(record->state_msg((state == TrackRecord)));
}
void

View file

@ -811,7 +811,7 @@ LaunchControlXL::stripable_property_change (PropertyChange const& what_changed,
return;
}
if (which < 8) {
button_track_focus( (uint8_t)which );
button_track_focus((uint8_t)which);
}
}
@ -843,8 +843,8 @@ LaunchControlXL::switch_bank (uint32_t base)
}
if (sl && sr) {
write(sl->state_msg( (base) ));
write(sr->state_msg( (s[1] != 0) ));
write(sl->state_msg((base)));
write(sr->state_msg((s[1] != 0)));
}
if (!s[0]) {