change: change code style to Linux style except indent.
This commit is contained in:
@@ -20,18 +20,19 @@
|
||||
|
||||
#include "clitaskdialog.h"
|
||||
|
||||
namespace olive {
|
||||
|
||||
CLITaskDialog::CLITaskDialog(Task *task, QObject* parent) :
|
||||
CLIProgressDialog(task->GetTitle(), parent),
|
||||
task_(task)
|
||||
namespace olive
|
||||
{
|
||||
connect(task_, &Task::ProgressChanged, this, &CLITaskDialog::SetProgress);
|
||||
|
||||
CLITaskDialog::CLITaskDialog(Task *task, QObject *parent)
|
||||
: CLIProgressDialog(task->GetTitle(), parent)
|
||||
, task_(task)
|
||||
{
|
||||
connect(task_, &Task::ProgressChanged, this, &CLITaskDialog::SetProgress);
|
||||
}
|
||||
|
||||
bool CLITaskDialog::Run()
|
||||
{
|
||||
return task_->Start();
|
||||
return task_->Start();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user