Replace display.format with .form and .precision

Remove instance accessors w/o replacement
as a prelude to deprecation.
This commit is contained in:
Michael Davidsaver
2019-01-15 20:37:28 -08:00
parent 2814c779bd
commit 4ffddfa2f6
6 changed files with 6 additions and 37 deletions

View File

@@ -172,7 +172,6 @@ static void testDisplay()
dy.setLow(-10.0);
dy.setHigh(-1.0);
dy.setDescription(string("testDescription"));
dy.setFormat(string("%f10.0"));
dy.setUnits(string("volts"));
result = pvDisplay.set(dy);
testOk1(result);
@@ -180,7 +179,6 @@ static void testDisplay()
testOk1(dy.getLow()==display.getLow());
testOk1(dy.getHigh()==display.getHigh());
testOk1(dy.getDescription().compare(display.getDescription())==0);
testOk1(dy.getFormat().compare(display.getFormat())==0);
testOk1(dy.getUnits().compare(display.getUnits())==0);
double low = display.getLow();
double high = display.getHigh();
@@ -217,7 +215,7 @@ static void testEnumerated()
MAIN(testProperty)
{
testPlan(27);
testPlan(26);
testDiag("Tests property");
fieldCreate = getFieldCreate();
pvDataCreate = getPVDataCreate();

View File

@@ -224,10 +224,6 @@ static void testPVScalarWithProperties(
string("display.description"));
testOk1(desc.get()!=0);
desc->put(string("this is a description"));
PVStringPtr format = pvStructure->getSubField<PVString>(
string("display.format"));
testOk1(format.get()!=0);
format->put(string("f10.2"));
PVStringPtr units = pvStructure->getSubField<PVString>(
string("display.units"));
testOk1(units.get()!=0);
@@ -740,7 +736,7 @@ static void testSubField()
MAIN(testPVData)
{
testPlan(271);
testPlan(261);
try{
fieldCreate = getFieldCreate();
pvDataCreate = getPVDataCreate();