Files
oak-editor/ui/checkboxex.cpp
T
2019-02-14 12:37:30 -08:00

13 lines
318 B
C++

#include "checkboxex.h"
#include "project/undo.h"
CheckboxEx::CheckboxEx(QWidget* parent) : QCheckBox(parent) {
// connect(this, SIGNAL(clicked(bool)), this, SLOT(checkbox_command()));
}
void CheckboxEx::checkbox_command() {
CheckboxCommand* c = new CheckboxCommand(this);
Olive::UndoStack.push(c);
}