MCPcopy Create free account
hub / github.com/LMMS/lmms / ~MainWindow

Method ~MainWindow

src/gui/MainWindow.cpp:237–252  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

235
236
237MainWindow::~MainWindow()
238{
239 for( PluginView *view : m_tools )
240 {
241 delete view->model();
242 delete view;
243 }
244 // TODO: Close tools
245 // dependencies are such that the editors must be destroyed BEFORE Song is deletect in Engine::destroy
246 // see issue #2015 on github
247 delete gui->automationEditor();
248 delete gui->pianoRoll();
249 delete gui->songEditor();
250 // destroy engine which will do further cleanups etc.
251 Engine::destroy();
252}
253
254
255

Callers

nothing calls this directly

Calls 1

modelMethod · 0.45

Tested by

no test coverage detected