命名规范

This commit is contained in:
2026-07-29 12:30:40 +08:00
parent f5f1bf9cc7
commit 18edce4838
59 changed files with 1690 additions and 1795 deletions
+5 -5
View File
@@ -1,11 +1,11 @@
#ifndef ShowTime_H
#define ShowTime_H
#ifndef Show_Time_H
#define Show_Time_H
#include "../Global.h"
#include <QTimer>
class ShowTime : public QWidget {
class Show_Time : public QWidget {
public:
explicit ShowTime(QWidget *parent = nullptr);
QTimer mTimer;
explicit Show_Time(QWidget *parent = nullptr);
QTimer timer;
protected:
void paintEvent(QPaintEvent *event) override;
};