Changeset 119

Show
Ignore:
Timestamp:
17.12.2006 14:15:28 (2 years ago)
Author:
decoder
Message:

Renamed variables and changed their scoop in both scanset and preprocessor parser
This should fix some strange errors

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/devel/FuzzyOcr/Config.pm

    r117 r119  
    869869    } 
    870870 
    871     our @slabels; 
    872     our @scansets
     871    my @slabels; 
     872    my @scanlist
    873873    my $scanset; 
    874874 
     
    913913                    } 
    914914                } 
    915                 push(@scansets, $scanset); 
     915                push(@scanlist, $scanset); 
    916916                $scanset = undef; 
    917917            } else { 
     
    931931    } 
    932932    close(SFILE); 
    933     return (0, @scansets); 
     933    return (0, @scanlist); 
    934934} 
    935935 
     
    941941    } 
    942942 
    943     our @plabels; 
    944     our @preprocessors
     943    my @plabels; 
     944    my @preplist
    945945    my $preprocessor; 
    946946 
     
    971971                    } 
    972972                } 
    973                 push(@preprocessors, $preprocessor); 
     973                push(@preplist, $preprocessor); 
    974974                $preprocessor = undef; 
    975975            } else { 
     
    989989    } 
    990990    close(PFILE); 
    991     return (0, @preprocessors); 
     991    return (0, @preplist); 
    992992} 
    993993