summaryrefslogtreecommitdiff
path: root/src/lib/corelib/language/value.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/corelib/language/value.cpp')
-rw-r--r--src/lib/corelib/language/value.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/corelib/language/value.cpp b/src/lib/corelib/language/value.cpp
index 7ba9ff384..fabc64ccd 100644
--- a/src/lib/corelib/language/value.cpp
+++ b/src/lib/corelib/language/value.cpp
@@ -57,7 +57,9 @@ Value::Value(Type t, bool createdByPropertiesBlock) : m_type(t)
Value::Value(const Value &other)
: m_type(other.m_type),
m_scope(other.m_scope),
+ m_scopeName(other.m_scopeName),
m_next(other.m_next ? other.m_next->clone() : ValuePtr()),
+ m_candidates(other.m_candidates),
m_flags(other.m_flags)
{
}