From 1b5de71f7af5f7dcb4c0db268cfe1bd132dcb80a Mon Sep 17 00:00:00 2001 From: mattijs Date: Tue, 8 Mar 2011 10:58:50 +0000 Subject: [PATCH] BUG: codedFixedValue: oldTypeName_ not preserved. --- .../codedFixedValue/codedFixedValueFvPatchScalarField.C | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/finiteVolume/fields/fvPatchFields/derived/codedFixedValue/codedFixedValueFvPatchScalarField.C b/src/finiteVolume/fields/fvPatchFields/derived/codedFixedValue/codedFixedValueFvPatchScalarField.C index 9123e0cb70..720bd6f9d3 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/codedFixedValue/codedFixedValueFvPatchScalarField.C +++ b/src/finiteVolume/fields/fvPatchFields/derived/codedFixedValue/codedFixedValueFvPatchScalarField.C @@ -352,7 +352,7 @@ codedFixedValueFvPatchScalarField fixedValueFvPatchField(ptf, p, iF, mapper), dict_(ptf.dict_), redirectType_(ptf.redirectType_), - oldLibPath_(), + oldLibPath_(ptf.oldLibPath_), redirectPatchFieldPtr_() {} @@ -384,7 +384,7 @@ codedFixedValueFvPatchScalarField fixedValueFvPatchField(ptf), dict_(ptf.dict_), redirectType_(ptf.redirectType_), - oldLibPath_(), + oldLibPath_(ptf.oldLibPath_), redirectPatchFieldPtr_() {} @@ -399,7 +399,7 @@ codedFixedValueFvPatchScalarField fixedValueFvPatchField(ptf, iF), dict_(ptf.dict_), redirectType_(ptf.redirectType_), - oldLibPath_(), + oldLibPath_(ptf.oldLibPath_), redirectPatchFieldPtr_() {}