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
This commit is contained in:
Tobias Doerffel
2008-06-08 11:40:36 +00:00
parent 5bcaaf4911
commit 704a9cf2f4
3 changed files with 7 additions and 9 deletions

View File

@@ -358,7 +358,7 @@ invalid_format:
bool FASTCALL midiImport::readRIFF( trackContainer * _tc )
bool midiImport::readRIFF( trackContainer * _tc )
{
// skip file length
skip( 4 );
@@ -403,7 +403,7 @@ data_not_found:
bool FASTCALL midiImport::readTrack( int _track_end, QString & _track_name )
bool midiImport::readTrack( int _track_end, QString & _track_name )
{
int tick = 0;
unsigned char last_cmd = 0;

View File

@@ -46,8 +46,7 @@ void stereoEnhancerControls::changeWideCoeff( void )
void FASTCALL stereoEnhancerControls::loadSettings(
const QDomElement & _this )
void stereoEnhancerControls::loadSettings( const QDomElement & _this )
{
m_widthModel.setValue( _this.attribute( "width" ).toFloat() );
}
@@ -55,7 +54,7 @@ void FASTCALL stereoEnhancerControls::loadSettings(
void FASTCALL stereoEnhancerControls::saveSettings( QDomDocument & _doc,
void stereoEnhancerControls::saveSettings( QDomDocument & _doc,
QDomElement & _this )
{
_this.setAttribute( "width", m_widthModel.value() );

View File

@@ -54,8 +54,7 @@ void stereoMatrixControls::changeMatrix( void )
void FASTCALL stereoMatrixControls::loadSettings(
const QDomElement & _this )
void stereoMatrixControls::loadSettings( const QDomElement & _this )
{
m_llModel.setValue( _this.attribute( "l-l" ).toFloat() );
m_lrModel.setValue( _this.attribute( "l-r" ).toFloat() );
@@ -66,8 +65,8 @@ void FASTCALL stereoMatrixControls::loadSettings(
void FASTCALL stereoMatrixControls::saveSettings( QDomDocument & _doc,
QDomElement & _this )
void stereoMatrixControls::saveSettings( QDomDocument & _doc,
QDomElement & _this )
{
_this.setAttribute( "l-l", m_llModel.value() );
_this.setAttribute( "l-r", m_lrModel.value() );