File tree Expand file tree Collapse file tree 3 files changed +7
-9
lines changed
Expand file tree Collapse file tree 3 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -358,7 +358,7 @@ bool midiImport::readSMF( trackContainer * _tc )
358358
359359
360360
361- bool FASTCALL midiImport::readRIFF ( trackContainer * _tc )
361+ bool midiImport::readRIFF ( trackContainer * _tc )
362362{
363363 // skip file length
364364 skip ( 4 );
@@ -403,7 +403,7 @@ bool FASTCALL midiImport::readRIFF( trackContainer * _tc )
403403
404404
405405
406- bool FASTCALL midiImport::readTrack ( int _track_end, QString & _track_name )
406+ bool midiImport::readTrack ( int _track_end, QString & _track_name )
407407{
408408 int tick = 0 ;
409409 unsigned char last_cmd = 0 ;
Original file line number Diff line number Diff line change @@ -46,16 +46,15 @@ void stereoEnhancerControls::changeWideCoeff( void )
4646
4747
4848
49- void FASTCALL stereoEnhancerControls::loadSettings (
50- const QDomElement & _this )
49+ void stereoEnhancerControls::loadSettings ( const QDomElement & _this )
5150{
5251 m_widthModel.setValue ( _this.attribute ( " width" ).toFloat () );
5352}
5453
5554
5655
5756
58- void FASTCALL stereoEnhancerControls::saveSettings ( QDomDocument & _doc,
57+ void stereoEnhancerControls::saveSettings ( QDomDocument & _doc,
5958 QDomElement & _this )
6059{
6160 _this.setAttribute ( " width" , m_widthModel.value () );
Original file line number Diff line number Diff line change @@ -54,8 +54,7 @@ void stereoMatrixControls::changeMatrix( void )
5454
5555
5656
57- void FASTCALL stereoMatrixControls::loadSettings (
58- const QDomElement & _this )
57+ void stereoMatrixControls::loadSettings ( const QDomElement & _this )
5958{
6059 m_llModel.setValue ( _this.attribute ( " l-l" ).toFloat () );
6160 m_lrModel.setValue ( _this.attribute ( " l-r" ).toFloat () );
@@ -66,8 +65,8 @@ void FASTCALL stereoMatrixControls::loadSettings(
6665
6766
6867
69- void FASTCALL stereoMatrixControls::saveSettings ( QDomDocument & _doc,
70- QDomElement & _this )
68+ void stereoMatrixControls::saveSettings ( QDomDocument & _doc,
69+ QDomElement & _this )
7170{
7271 _this.setAttribute ( " l-l" , m_llModel.value () );
7372 _this.setAttribute ( " l-r" , m_lrModel.value () );
You can’t perform that action at this time.
0 commit comments