13 lines
214 B
C++
13 lines
214 B
C++
#include "undostack.h"
|
|
|
|
OliveUndoStack olive::undo_stack;
|
|
|
|
void OliveUndoStack::pushIfHasChildren(QUndoCommand *command)
|
|
{
|
|
if (command->childCount() > 0) {
|
|
push(command);
|
|
} else {
|
|
delete command;
|
|
}
|
|
}
|