mirror of
https://github.com/LMMS/lmms.git
synced 2026-03-21 23:43:14 -04:00
added undo/redo-system and other features
git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@104 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
@@ -26,6 +26,7 @@
|
||||
|
||||
|
||||
#include "bb_editor.h"
|
||||
#include "edit_history.h"
|
||||
#include "engine.h"
|
||||
#include "main_window.h"
|
||||
#include "mixer.h"
|
||||
@@ -41,8 +42,10 @@ engine::engine( const bool _has_gui ) :
|
||||
m_mainWindow( NULL ),
|
||||
m_songEditor( NULL ),
|
||||
m_bbEditor( NULL ),
|
||||
m_pianoRoll( NULL )
|
||||
m_pianoRoll( NULL ),
|
||||
m_editHistory( NULL )
|
||||
{
|
||||
m_editHistory = new editHistory( this );
|
||||
m_mainWindow = new mainWindow( this );
|
||||
m_mixer = new mixer( this );
|
||||
m_songEditor = new songEditor( this );
|
||||
@@ -63,6 +66,7 @@ engine::engine( const bool _has_gui ) :
|
||||
engine::~engine()
|
||||
{
|
||||
m_mixer->stopProcessing();
|
||||
|
||||
delete m_projectNotes;
|
||||
delete m_songEditor;
|
||||
delete m_bbEditor;
|
||||
|
||||
Reference in New Issue
Block a user