From e2d9fc1c32fbeb23194a15d022cfbd3bc0319556 Mon Sep 17 00:00:00 2001 From: PowPingDone Date: Sun, 16 Sep 2018 14:23:54 -0500 Subject: [PATCH] Fix Compile Error --- src/meshgenerator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meshgenerator.cpp b/src/meshgenerator.cpp index cea80b85..6b91c171 100644 --- a/src/meshgenerator.cpp +++ b/src/meshgenerator.cpp @@ -393,7 +393,7 @@ bool MeshGenerator::checkIsComponentDirty(QString componentId) auto findComponent = m_snapshot->components.find(componentId); if (findComponent == m_snapshot->components.end()) { qDebug() << "Component not found:" << componentId; - return nullptr; + return isDirty; } component = &findComponent->second; }