- automation pattern can be initialized without track

- slots moved to public


git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@231 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Javier Serrano Polo
2006-07-14 20:12:18 +00:00
parent 68ddddfd76
commit 6823ef59c2
2 changed files with 37 additions and 19 deletions

View File

@@ -40,7 +40,8 @@ class automationPattern : public QObject, public journallingObject
public:
typedef QMap<midiTime, int> timeMap;
automationPattern( track * _channel_track, levelObject * _object );
automationPattern( track * _track, levelObject * _object );
automationPattern( engine * _engine, levelObject * _object );
automationPattern( const automationPattern & _pat_to_copy );
virtual ~automationPattern();
@@ -52,8 +53,6 @@ public:
void FASTCALL removeValue( const midiTime & _time );
void clearValues( void );
inline timeMap & getTimeMap( void )
{
return( m_time_map );
@@ -101,7 +100,7 @@ public:
}
protected slots:
public slots:
void openInAutomationEditor( void );
void clear( void );