X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fsurfaces%2Ftranzport%2Flights.cc;h=89cf107acef0db4656fc3e61751c30c1bb29a29c;hb=4dc63966f0872efe768dad61eb9b8785d06b92d1;hp=c0e8092f45290c48911a7929a09d407becca6528;hpb=297e80e020da94a56984b20782584bb1dd96ea34;p=ardour.git diff --git a/libs/surfaces/tranzport/lights.cc b/libs/surfaces/tranzport/lights.cc index c0e8092f45..89cf107ace 100644 --- a/libs/surfaces/tranzport/lights.cc +++ b/libs/surfaces/tranzport/lights.cc @@ -1,5 +1,5 @@ /* - * Copyright (C) 2006 Paul Davis + * Copyright (C) 2006 Paul Davis * Copyright (C) 2007 Michael Taht * * This program is free software; you can redistribute it and/or modify @@ -15,7 +15,7 @@ * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - * + * * */ #include @@ -51,29 +51,29 @@ TranzportControlProtocol::light_off (LightID light) void TranzportControlProtocol::lights_init() { lights_invalid.set(); - lights_flash = lights_pending = lights_current.reset(); + lights_flash = lights_pending = lights_current.reset(); } -// Now that all this is bitsets, I don't see much +// Now that all this is bitsets, I don't see much // need for these 4 to remain in the API -void TranzportControlProtocol::light_validate (LightID light) +void TranzportControlProtocol::light_validate (LightID light) { lights_invalid.reset(light); } -void TranzportControlProtocol::light_invalidate (LightID light) +void TranzportControlProtocol::light_invalidate (LightID light) { lights_invalid.set(light); } -void TranzportControlProtocol::lights_validate () +void TranzportControlProtocol::lights_validate () { lights_invalid.reset(); } -void TranzportControlProtocol::lights_invalidate () +void TranzportControlProtocol::lights_invalidate () { lights_invalid.set(); }