mirror of
https://github.com/AxioDL/amuse.git
synced 2025-06-04 13:41:30 +00:00
11 lines
254 B
C++
11 lines
254 B
C++
#include "SoundMacroEditor.hpp"
|
|
#include <QLabel>
|
|
|
|
SoundMacroEditor::SoundMacroEditor(ProjectModel::SoundMacroNode* node, QWidget* parent)
|
|
: EditorWidget(parent)
|
|
{
|
|
QLabel* lab = new QLabel;
|
|
lab->setText(node->m_name);
|
|
lab->setParent(this);
|
|
}
|