style: 修改成员变量命名

类成员变量前统一增加m_标记

log: 代码格式化
Influence: 无
Task: https://pms.uniontech.com/task-view-96831.html
Change-Id: I2432dd5667bc195da1a64cdbb7cd933052ba7baa
This commit is contained in:
donghualin
2022-10-27 03:52:18 +00:00
parent 300c412c5f
commit 873a642f06
23 changed files with 379 additions and 395 deletions

View File

@ -58,7 +58,6 @@ struct AppMenuItem
AppMenuAction action;
};
// 应用菜单类
class AppMenu
{
@ -73,12 +72,13 @@ public:
private:
QString allocateId();
QVector<AppMenuItem> items; // json:"items"
bool checkableMenu; // json:"checkableMenu"
bool singleCheck; // json:"singleCheck"
private:
QVector<AppMenuItem> m_items; // json:"items"
bool m_checkableMenu; // json:"checkableMenu"
bool m_singleCheck; // json:"singleCheck"
int itemcount;
bool dirty;
int m_itemCount;
bool m_dirty;
};
#endif // APPMENU_H