From a657a012cd936dbf4b69b3a6dbe5ba213bcc042a Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Mon, 4 Oct 2010 13:46:09 -0500 Subject: [PATCH] rec: Make CALC expression fields 80 chars. Both calc and calcout record types changed. --- src/rec/calcRecord.dbd | 4 ++-- src/rec/calcoutRecord.dbd | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/rec/calcRecord.dbd b/src/rec/calcRecord.dbd index 76ad5f650..0248f34cd 100644 --- a/src/rec/calcRecord.dbd +++ b/src/rec/calcRecord.dbd @@ -17,7 +17,7 @@ recordtype(calc) { promptgroup(GUI_CALC) special(SPC_CALC) pp(TRUE) - size(40) + size(80) initial("0") } field(INPA,DBF_INLINK) { @@ -296,6 +296,6 @@ recordtype(calc) { prompt("Reverse Polish Calc") special(SPC_NOMOD) interest(4) - extra("char rpcl[INFIX_TO_POSTFIX_SIZE(40)]") + extra("char rpcl[INFIX_TO_POSTFIX_SIZE(80)]") } } diff --git a/src/rec/calcoutRecord.dbd b/src/rec/calcoutRecord.dbd index c7632ef12..fc393a782 100644 --- a/src/rec/calcoutRecord.dbd +++ b/src/rec/calcoutRecord.dbd @@ -45,7 +45,7 @@ recordtype(calcout) { promptgroup(GUI_CALC) special(SPC_CALC) pp(TRUE) - size(40) + size(80) initial("0") } field(CLCV,DBF_LONG) { @@ -248,7 +248,7 @@ recordtype(calcout) { promptgroup(GUI_CALC) special(SPC_CALC) pp(TRUE) - size(40) + size(80) initial("0") } field(OCLV,DBF_LONG) { @@ -495,12 +495,12 @@ recordtype(calcout) { prompt("Reverse Polish Calc") special(SPC_NOMOD) interest(4) - extra("char rpcl[INFIX_TO_POSTFIX_SIZE(40)]") + extra("char rpcl[INFIX_TO_POSTFIX_SIZE(80)]") } field(ORPC,DBF_NOACCESS) { prompt("Reverse Polish OCalc") special(SPC_NOMOD) interest(4) - extra("char orpc[INFIX_TO_POSTFIX_SIZE(40)]") + extra("char orpc[INFIX_TO_POSTFIX_SIZE(80)]") } }