From ab4cebeea006c848dea21f92d852b7bba35da959 Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Mon, 17 Mar 2014 21:08:55 +0100 Subject: [PATCH] MidiPort: remove unneccessary line breaks --- include/MidiPort.h | 24 ++++++++---------------- 1 file changed, 8 insertions(+), 16 deletions(-) diff --git a/include/MidiPort.h b/include/MidiPort.h index 767dc932e..8888ee4a7 100644 --- a/include/MidiPort.h +++ b/include/MidiPort.h @@ -45,22 +45,14 @@ class MidiPortMenu; class MidiPort : public Model, public SerializingObject { Q_OBJECT - mapPropertyFromModel(int,inputChannel,setInputChannel, - m_inputChannelModel); - mapPropertyFromModel(int,outputChannel,setOutputChannel, - m_outputChannelModel); - mapPropertyFromModel(int,inputController,setInputController, - m_inputControllerModel); - mapPropertyFromModel(int,outputController,setOutputController, - m_outputControllerModel); - mapPropertyFromModel(int,fixedInputVelocity,setFixedInputVelocity, - m_fixedInputVelocityModel); - mapPropertyFromModel(int,fixedOutputVelocity,setFixedOutputVelocity, - m_fixedOutputVelocityModel); - mapPropertyFromModel(int,fixedOutputNote,setFixedOutputNote, - m_fixedOutputNoteModel); - mapPropertyFromModel(int,outputProgram,setOutputProgram, - m_outputProgramModel); + mapPropertyFromModel(int,inputChannel,setInputChannel,m_inputChannelModel); + mapPropertyFromModel(int,outputChannel,setOutputChannel,m_outputChannelModel); + mapPropertyFromModel(int,inputController,setInputController,m_inputControllerModel); + mapPropertyFromModel(int,outputController,setOutputController,m_outputControllerModel); + mapPropertyFromModel(int,fixedInputVelocity,setFixedInputVelocity,m_fixedInputVelocityModel); + mapPropertyFromModel(int,fixedOutputVelocity,setFixedOutputVelocity,m_fixedOutputVelocityModel); + mapPropertyFromModel(int,fixedOutputNote,setFixedOutputNote,m_fixedOutputNoteModel); + mapPropertyFromModel(int,outputProgram,setOutputProgram,m_outputProgramModel); mapPropertyFromModel(bool,isReadable,setReadable,m_readableModel); mapPropertyFromModel(bool,isWritable,setWritable,m_writableModel); public: