From a4acd5dfb3aa2bdc2f7108776fbbdc33c5e4fd51 Mon Sep 17 00:00:00 2001 From: minima Date: Sun, 19 Dec 2004 13:14:14 +0000 Subject: [PATCH] change so that ve7cc gets CC11 frames --- cmd/show/dx.pl | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/cmd/show/dx.pl b/cmd/show/dx.pl index f28ae1a4..009b5fa6 100644 --- a/cmd/show/dx.pl +++ b/cmd/show/dx.pl @@ -346,10 +346,14 @@ my @res = Spot::search($expr, $fromday, $today, $from, $to, $hint, $dofilter ? $ my $ref; my @dx; foreach $ref (@res) { - if ($real) { - push @out, $self->format_dx_spot(@$ref); + if ($self->ve7cc) { + push @out, VE7CC::dx_spot($self, @$ref); } else { - push @out, Spot::formatl(@$ref); + if ($real) { + push @out, $self->format_dx_spot(@$ref); + } else { + push @out, Spot::formatl(@$ref); + } } } -- 2.34.1