Set the undostack so we won't crash...

This commit is contained in:
dfighter1985 2014-07-15 21:46:16 +02:00
parent a24ad81206
commit cbc3b5a8c9

View file

@ -280,6 +280,7 @@ void CMainWindow::openWorkFile(QString file)
if(isWorksheetEditor(file_path->filePath())) if(isWorksheetEditor(file_path->filePath()))
{ {
CEditorWorksheet *new_window = new CEditorWorksheet(_ui.mdiArea); CEditorWorksheet *new_window = new CEditorWorksheet(_ui.mdiArea);
new_window->setUndoStack( m_undoStack );
new_window->open(file_path->filePath()); new_window->open(file_path->filePath());
new_window->activateWindow(); new_window->activateWindow();
} }