chengxr 1 year ago
parent
commit
d8d508f558
2 changed files with 2 additions and 2 deletions
  1. 1 1
      QFD/common/ProjectManager.cpp
  2. 1 1
      QFD/common/ProjectManager.h

+ 1 - 1
QFD/common/ProjectManager.cpp

@@ -7,7 +7,7 @@
 #include <QMetaEnum>
 #include <QDebug>
 
-QString ProjectManager::nameOFIndexType(ProjectManager::IndexType t)
+QString ProjectManager::nameOfIndexType(ProjectManager::IndexType t)
 {
     switch (t) {
     case Capability:

+ 1 - 1
QFD/common/ProjectManager.h

@@ -18,7 +18,7 @@ public:
         SchemaEval    = 0b1 << 2,  // 方案评估指标体系
     };
 
-    static QString nameOFIndexType(IndexType t);
+    static QString nameOfIndexType(IndexType t);
 
     /// 评估方案类型
     /// @attention 枚举值与本地数据库关联,可以新增,但如无必要禁止修改,除非你知道自己在干什么