From b75d24976cdad444043f03d73f056c666055c984 Mon Sep 17 00:00:00 2001 From: akl Date: Wed, 23 Apr 2008 07:41:48 +0000 Subject: [PATCH] Fix of IPAL19621 (Qt4 porting: regress of automatic assign a set of hypotheses). --- src/SMESHGUI/SMESHGUI_HypothesesUtils.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SMESHGUI/SMESHGUI_HypothesesUtils.cxx b/src/SMESHGUI/SMESHGUI_HypothesesUtils.cxx index 627d34e17..35b8a567d 100644 --- a/src/SMESHGUI/SMESHGUI_HypothesesUtils.cxx +++ b/src/SMESHGUI/SMESHGUI_HypothesesUtils.cxx @@ -173,8 +173,8 @@ namespace SMESH bool ok = reader.parse(source); file.close(); if (ok) { - myHypothesesMap = QMap( aXmlHandler->myHypothesesMap ); - myAlgorithmsMap = QMap( aXmlHandler->myAlgorithmsMap ); + myHypothesesMap.unite( QMap( aXmlHandler->myHypothesesMap ) ); + myAlgorithmsMap.unite( QMap( aXmlHandler->myAlgorithmsMap ) ); myListOfHypothesesSets.splice( myListOfHypothesesSets.begin(), aXmlHandler->myListOfHypothesesSets ); } -- 2.39.2