mirror of
https://github.com/AxioDL/amuse.git
synced 2025-08-05 11:45:44 +00:00
19 lines
282 B
C++
19 lines
282 B
C++
#include "EditorWidget.hpp"
|
|
#include "MainWindow.hpp"
|
|
|
|
EditorWidget::EditorWidget(QWidget* parent)
|
|
: QWidget(parent)
|
|
{
|
|
|
|
}
|
|
|
|
void EditorUndoCommand::undo()
|
|
{
|
|
g_MainWindow->openEditor(m_node.get());
|
|
}
|
|
|
|
void EditorUndoCommand::redo()
|
|
{
|
|
g_MainWindow->openEditor(m_node.get());
|
|
}
|