From cd9e9924f6212e50a9d6b9dbce00ccbdcf6f3220 Mon Sep 17 00:00:00 2001 From: MymsMan Date: Mon, 18 May 2020 22:46:37 +0100 Subject: [PATCH] add issplit method to rsv.class --- webif/lib/rsv.class | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/webif/lib/rsv.class b/webif/lib/rsv.class index e38ec45..2066720 100644 --- a/webif/lib/rsv.class +++ b/webif/lib/rsv.class @@ -158,6 +158,10 @@ rsv method isseries {} { if {$ucRecKind == 4} { return 1 } else { return 0 } } +rsv method issplit {} { + if {$ucRecKind == 2} { return 1 } else { return 0 } +} + rsv method _strip {str} { return [system strip $str] }