change: change code style to Linux style except indent.
This commit is contained in:
@@ -26,25 +26,24 @@
|
||||
|
||||
#include "common/define.h"
|
||||
|
||||
namespace olive {
|
||||
|
||||
class CLIProgressDialog : public QObject
|
||||
namespace olive
|
||||
{
|
||||
|
||||
class CLIProgressDialog : public QObject {
|
||||
public:
|
||||
CLIProgressDialog(const QString &title, QObject* parent = nullptr);
|
||||
CLIProgressDialog(const QString &title, QObject *parent = nullptr);
|
||||
|
||||
public slots:
|
||||
void SetProgress(double p);
|
||||
void SetProgress(double p);
|
||||
|
||||
private:
|
||||
void Update();
|
||||
void Update();
|
||||
|
||||
QString title_;
|
||||
QString title_;
|
||||
|
||||
double progress_;
|
||||
|
||||
bool drawn_;
|
||||
double progress_;
|
||||
|
||||
bool drawn_;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user