change: change code style to Linux style except indent.

This commit is contained in:
Mike Solar
2025-08-03 03:09:40 +08:00
parent 65ab76edc8
commit 74f73ab3be
789 changed files with 77113 additions and 68888 deletions
+14 -16
View File
@@ -26,30 +26,28 @@
#include "common/define.h"
namespace olive {
class PathWidget : public QWidget
namespace olive
{
Q_OBJECT
public:
PathWidget(const QString& path,
QWidget* parent = nullptr);
QString text() const
{
return path_edit_->text();
}
class PathWidget : public QWidget {
Q_OBJECT
public:
PathWidget(const QString &path, QWidget *parent = nullptr);
QString text() const
{
return path_edit_->text();
}
private slots:
void BrowseClicked();
void BrowseClicked();
void LineEditChanged();
void LineEditChanged();
private:
QLineEdit* path_edit_;
QPushButton* browse_btn_;
QLineEdit *path_edit_;
QPushButton *browse_btn_;
};
}