0.2.1 release
git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@272 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
10
ChangeLog
10
ChangeLog
@@ -1,3 +1,13 @@
|
||||
2006-07-27 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
|
||||
|
||||
* configure.in:
|
||||
made 0.2.1 release
|
||||
|
||||
* include/mixer.h:
|
||||
* include/visualization_widget.h:
|
||||
* src/widgets/visualization_widget.cpp:
|
||||
fixed a bug in connection between mixer and visualization-widget
|
||||
|
||||
2006-07-24 Javier Serrano Polo <jasp00/at/terra/dot/es>
|
||||
|
||||
* src/tracks/instrument_track.cpp:
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
# Process this file with autoconf to produce a configure script.
|
||||
|
||||
AC_PREREQ(2.50)
|
||||
AC_INIT(lmms, 0.2.0-cvs20060724, tobydox/at/users/dot/sourceforge/dot/net)
|
||||
AM_INIT_AUTOMAKE(lmms, 0.2.0-cvs20060724)
|
||||
AC_INIT(lmms, 0.2.1, tobydox/at/users/dot/sourceforge/dot/net)
|
||||
AM_INIT_AUTOMAKE(lmms, 0.2.1)
|
||||
|
||||
AM_CONFIG_HEADER(config.h)
|
||||
|
||||
|
||||
@@ -289,8 +289,7 @@ public slots:
|
||||
|
||||
signals:
|
||||
void sampleRateChanged( void );
|
||||
void nextAudioBuffer( const surroundSampleFrame *,
|
||||
const fpab_t _frames );
|
||||
void nextAudioBuffer( const surroundSampleFrame *, int _frames );
|
||||
|
||||
|
||||
private:
|
||||
|
||||
@@ -67,7 +67,7 @@ protected:
|
||||
|
||||
|
||||
protected slots:
|
||||
void setAudioBuffer( const surroundSampleFrame * _ab, const fpab_t _frames );
|
||||
void setAudioBuffer( const surroundSampleFrame * _ab, int _frames );
|
||||
|
||||
|
||||
private:
|
||||
|
||||
@@ -82,9 +82,9 @@ visualizationWidget::visualizationWidget( const QPixmap & _bg, QWidget * _p,
|
||||
}
|
||||
|
||||
connect( eng()->getMixer(), SIGNAL( nextAudioBuffer(
|
||||
const surroundSampleFrame *, const fpab_t ) ),
|
||||
const surroundSampleFrame *, int ) ),
|
||||
this, SLOT( setAudioBuffer(
|
||||
const surroundSampleFrame *, const fpab_t ) ) );
|
||||
const surroundSampleFrame *, int ) ) );
|
||||
|
||||
toolTip::add( this, tr( "click to enable/disable visualization of "
|
||||
"master-output" ) );
|
||||
@@ -101,7 +101,7 @@ visualizationWidget::~visualizationWidget()
|
||||
|
||||
|
||||
void visualizationWidget::setAudioBuffer( const surroundSampleFrame * _ab,
|
||||
const fpab_t _frames )
|
||||
int _frames )
|
||||
{
|
||||
if( m_enabled == TRUE )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user