- When a filter resolves an identifier through a DOM reference, it records
  the source. In other words, when 'priority' is resolved to 'H', the source
  reference ('priority') is stored in the variant. This is because different
  data attributes behave differently when compared.
This commit is contained in:
Paul Beckingham 2014-05-31 10:01:00 -04:00
parent 3bc44681a5
commit ba8c007ace

View file

@ -48,6 +48,7 @@ bool domSource (const std::string& identifier, Variant& value)
if (stringValue != identifier) if (stringValue != identifier)
{ {
value = Variant (stringValue); value = Variant (stringValue);
value.source (identifier);
return true; return true;
} }