From cf030bc711fee4c44d6d2a3e23cb2b9fbfbf06e1 Mon Sep 17 00:00:00 2001 From: dhickin Date: Wed, 11 Feb 2015 14:04:15 +0000 Subject: [PATCH] Call postPut() in Convert::copyUnion(). --- src/factory/Convert.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/factory/Convert.cpp b/src/factory/Convert.cpp index 71ea96e..359ea75 100644 --- a/src/factory/Convert.cpp +++ b/src/factory/Convert.cpp @@ -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(); } }