From 492a49408a7127806f2b4105e55f3ff7ca3f6b87 Mon Sep 17 00:00:00 2001 From: Javier Serrano Polo Date: Fri, 14 Jul 2006 20:12:58 +0000 Subject: [PATCH] automation pattern can be initialized without track git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@232 0778d3d1-df1d-0410-868b-ea421aaaa00d --- include/automatable_object.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/automatable_object.h b/include/automatable_object.h index de0f288ab..436e692f8 100755 --- a/include/automatable_object.h +++ b/include/automatable_object.h @@ -356,6 +356,11 @@ public: return( m_track == NULL ); } + void initAutomationPattern( engine * _engine ) + { + m_automation_pattern = new automationPattern( _engine, this ); + } + protected: virtual void redoStep( journalEntry & _je )