Skip to content

Commit 704a9cf

Browse files
committed
use lmmsconfig.h rather than config.h and use prefixed macro-names
git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1101 0778d3d1-df1d-0410-868b-ea421aaaa00d
1 parent 5bcaaf4 commit 704a9cf

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

plugins/midi_import/midi_import.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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;

plugins/stereo_enhancer/stereoenhancer_controls.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff 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() );

plugins/stereo_matrix/stereomatrix_controls.cpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff 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() );

0 commit comments

Comments
 (0)