in saveSettings() fixed wrong integer-to-string-conversion which made LMMS save broken files
git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@745 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2008-03-01 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
|
||||
|
||||
* plugins/triple_oscillator/triple_oscillator.cpp:
|
||||
in saveSettings() fixed wrong integer-to-string-conversion which made
|
||||
LMMS save broken files
|
||||
|
||||
2008-02-29 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
|
||||
|
||||
* src/widgets/text_float.cpp:
|
||||
|
||||
@@ -261,7 +261,7 @@ void tripleOscillator::saveSettings( QDomDocument & _doc, QDomElement & _this )
|
||||
m_osc[i]->m_waveShapeModel.saveSettings( _doc, _this,
|
||||
"wavetype" + is );
|
||||
m_osc[i]->m_modulationAlgoModel.saveSettings( _doc, _this,
|
||||
"modalgo" + QString( i+1 ) );
|
||||
"modalgo" + QString::number( i+1 ) );
|
||||
_this.setAttribute( "userwavefile" + is,
|
||||
m_osc[i]->m_sampleBuffer->audioFile() );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user