removed obsolete FASTCALL-attributes

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1072 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2008-06-05 12:48:25 +00:00
parent 7b6ab86588
commit 599d515791
2 changed files with 13 additions and 14 deletions

View File

@@ -91,17 +91,17 @@ public:
int key = DefaultKey,
volume _volume = DefaultVolume,
panning _panning = DefaultPanning,
detuningHelper * _detuning = NULL ) FASTCALL;
detuningHelper * _detuning = NULL );
note( const note & _note );
virtual ~note();
void FASTCALL setLength( const midiTime & _length );
void FASTCALL setPos( const midiTime & _pos );
void FASTCALL setKey( const int _key );
void FASTCALL setVolume( const volume _volume = DefaultVolume );
void FASTCALL setPanning( const panning _panning = DefaultPanning );
void FASTCALL quantizeLength( const int _q_grid );
void FASTCALL quantizePos( const int _q_grid );
void setLength( const midiTime & _length );
void setPos( const midiTime & _pos );
void setKey( const int _key );
void setVolume( const volume _volume = DefaultVolume );
void setPanning( const panning _panning = DefaultPanning );
void quantizeLength( const int _q_grid );
void quantizePos( const int _q_grid );
inline midiTime endPos( void ) const
{
@@ -148,8 +148,7 @@ public:
return( classNodeName() );
}
static midiTime FASTCALL quantized( const midiTime & _m,
const int _q_grid );
static midiTime quantized( const midiTime & _m, const int _q_grid );
detuningHelper * detuning( void ) const
{
@@ -162,9 +161,9 @@ public:
protected:
virtual void FASTCALL saveSettings( QDomDocument & _doc,
virtual void saveSettings( QDomDocument & _doc,
QDomElement & _parent );
virtual void FASTCALL loadSettings( const QDomElement & _this );
virtual void loadSettings( const QDomElement & _this );
virtual void undoStep( journalEntry & _je );
virtual void redoStep( journalEntry & _je );

View File

@@ -132,7 +132,7 @@ public:
virtual bool isFromTrack( const track * _track ) const;
void FASTCALL noteOff( const f_cnt_t _s = 0 );
void noteOff( const f_cnt_t _s = 0 );
inline f_cnt_t framesBeforeRelease( void ) const
{
@@ -168,7 +168,7 @@ public:
}
// returns volume-level at frame _frame (envelope/LFO)
float FASTCALL volumeLevel( const f_cnt_t _frame );
float volumeLevel( const f_cnt_t _frame );
// returns instrument-track this note-play-handle plays
inline instrumentTrack * getInstrumentTrack( void )