diff options
author | rtk0c <[email protected]> | 2021-05-21 18:34:20 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2021-05-21 18:34:20 -0700 |
commit | bb2ab4bc5b2c9cc25ef1858ac538f2dc48af2d2c (patch) | |
tree | 5ca29166332b3d043c6db773452d3bd168e31088 /core/src/Model/Workflow/Nodes/TextNodes.hpp | |
parent | dc13110c14bf49e495d4b4243fd4758232f8716f (diff) |
Fix type and field the same name
Diffstat (limited to 'core/src/Model/Workflow/Nodes/TextNodes.hpp')
-rw-r--r-- | core/src/Model/Workflow/Nodes/TextNodes.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/Model/Workflow/Nodes/TextNodes.hpp b/core/src/Model/Workflow/Nodes/TextNodes.hpp index 1beb145..c33854c 100644 --- a/core/src/Model/Workflow/Nodes/TextNodes.hpp +++ b/core/src/Model/Workflow/Nodes/TextNodes.hpp @@ -22,7 +22,7 @@ private: struct Argument { - ArgumentType ArgumentType; + ArgumentType Type; int PinIdx; }; using Element = std::variant<std::string, Argument>; @@ -50,4 +50,4 @@ public: private: void PreRemoveElement(int idx); -};
\ No newline at end of file +}; |