From d6c8de87de3522a7506e3baa53758a04616a51db Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 27 Oct 2005 23:47:01 +0000 Subject: [PATCH] preserve native type when its a scalar so that enum regression tests excercise relevant subcomponents of GDD --- src/makeBaseApp/top/caServerApp/exScalarPV.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/makeBaseApp/top/caServerApp/exScalarPV.cc b/src/makeBaseApp/top/caServerApp/exScalarPV.cc index 4ac60ac8a..3f6ec0beb 100644 --- a/src/makeBaseApp/top/caServerApp/exScalarPV.cc +++ b/src/makeBaseApp/top/caServerApp/exScalarPV.cc @@ -107,7 +107,7 @@ caStatus exScalarPV::updateValue ( const gdd & valueIn ) if ( ! pValue.valid () ) { this->pValue = new gddScalar ( - gddAppType_value, aitEnumFloat64 ); + gddAppType_value, this->info.getType () ); if ( ! pValue.valid () ) { return S_casApp_noMemory; }