diff options
author | rtk0c <[email protected]> | 2022-03-15 22:29:53 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-03-15 22:29:53 -0700 |
commit | ee450783622008698647010540d9b9a9d55cb323 (patch) | |
tree | 67088fa2da506a5229fea47b6a812d38b18304a0 /core/src/UI/UI_Workflows.cpp | |
parent | 9dcdcf68f6a60741cbdd287e7eda23b4a21a080e (diff) |
Temporarily switch to cstdio instead of custom FileStream implementation
Diffstat (limited to 'core/src/UI/UI_Workflows.cpp')
-rw-r--r-- | core/src/UI/UI_Workflows.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/src/UI/UI_Workflows.cpp b/core/src/UI/UI_Workflows.cpp index 036e532..c85850a 100644 --- a/core/src/UI/UI_Workflows.cpp +++ b/core/src/UI/UI_Workflows.cpp @@ -20,7 +20,7 @@ namespace ImNodes = ax::NodeEditor; -namespace { +namespace CPLT_UNITY_ID { class WorkflowUI { private: @@ -241,13 +241,13 @@ public: // TODO } }; -} // namespace +} // namespace CPLT_UNITY_ID void UI::WorkflowsTab() { auto& project = *GlobalStates::GetInstance().GetCurrentProject(); - static std::unique_ptr<WorkflowUI> openWorkflow; + static std::unique_ptr<CPLT_UNITY_ID::WorkflowUI> openWorkflow; static AssetList::ListState state; bool openedDummy = true; @@ -267,7 +267,7 @@ void UI::WorkflowsTab() ImGui::CloseCurrentPopup(); auto workflow = project.Workflows.Load(*state.SelectedAsset); - openWorkflow = std::make_unique<WorkflowUI>(std::move(workflow)); + openWorkflow = std::make_unique<CPLT_UNITY_ID::WorkflowUI>(std::move(workflow)); } ImGui::SameLine(); project.Workflows.DisplayControls(state); |