change: change code style to Linux style except indent.
This commit is contained in:
@@ -23,26 +23,27 @@
|
||||
#include "core.h"
|
||||
#include "window/mainwindow/mainwindow.h"
|
||||
|
||||
namespace olive {
|
||||
namespace olive
|
||||
{
|
||||
|
||||
void OpenSequenceCommand::redo()
|
||||
{
|
||||
Core::instance()->main_window()->OpenSequence(sequence_);
|
||||
Core::instance()->main_window()->OpenSequence(sequence_);
|
||||
}
|
||||
|
||||
void OpenSequenceCommand::undo()
|
||||
{
|
||||
Core::instance()->main_window()->CloseSequence(sequence_);
|
||||
Core::instance()->main_window()->CloseSequence(sequence_);
|
||||
}
|
||||
|
||||
void CloseSequenceCommand::redo()
|
||||
{
|
||||
Core::instance()->main_window()->CloseSequence(sequence_);
|
||||
Core::instance()->main_window()->CloseSequence(sequence_);
|
||||
}
|
||||
|
||||
void CloseSequenceCommand::undo()
|
||||
{
|
||||
Core::instance()->main_window()->OpenSequence(sequence_);
|
||||
Core::instance()->main_window()->OpenSequence(sequence_);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user