From d77155f265b6a2fdb4bc469baca570231fbc8ca4 Mon Sep 17 00:00:00 2001 From: "kestes%walrus.com" Date: Thu, 9 May 2002 03:10:40 +0000 Subject: [PATCH] change name from 'progress' to 'columns' this is clearer --- webtools/tinderbox2/src/default_conf/BTData.pm | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/webtools/tinderbox2/src/default_conf/BTData.pm b/webtools/tinderbox2/src/default_conf/BTData.pm index 5f6f1ad7bda..58d8036f464 100644 --- a/webtools/tinderbox2/src/default_conf/BTData.pm +++ b/webtools/tinderbox2/src/default_conf/BTData.pm @@ -4,8 +4,8 @@ # Tracking system and its relationship to the tinderbox trees. -# $Revision: 1.10 $ -# $Date: 2002-05-03 00:19:41 $ +# $Revision: 1.11 $ +# $Date: 2002-05-09 03:10:40 $ # $Author: kestes%walrus.com $ # $Source: /home/jrmuizel/cvs-mirror/mozilla/webtools/tinderbox2/src/default_conf/BTData.pm,v $ # $Name: $ @@ -293,15 +293,15 @@ sub rec2bug_url { } -sub get_all_progress_states { +sub get_all_columns { - my (@progress_states) = main::uniq( values %BTData::STATUS_PROGRESS ); + my (@columns) = main::uniq( values %BTData::STATUS_PROGRESS ); # If the first element is null ignore it. - ($progress_states[0]) || - (shift @progress_states); + ($columns[0]) || + (shift @columns); - return @progress_states; + return @columns; }