Call postPut() in Convert::copyUnion().

This commit is contained in:
dhickin
2015-02-11 14:04:15 +00:00
parent 6cb95c5cfc
commit cf030bc711

View File

@@ -475,6 +475,7 @@ void Convert::copyUnion(PVUnionPtr const & from, PVUnionPtr const & to)
to->set(toValue);
}
copy(fromValue, toValue);
to->postPut();
}
}
else
@@ -485,6 +486,7 @@ void Convert::copyUnion(PVUnionPtr const & from, PVUnionPtr const & to)
{
copy(fromValue, to->select(from->getSelectedIndex()));
}
to->postPut();
}
}