hubb0r has asked for the wisdom of the Perl Monks concerning the following question:
Bareword "Chart::Plot::Annotated::_DataPt" not allowed while "strict s +ubs" in use at Annotated.pm line 14. BEGIN not safe after errors--compilation aborted at Annotated.pm line +131.
package Chart::Plot::Annotated; use 5.006; use strict; use warnings; use Carp; our $VERSION = '0.01'; ################################################################## # define this class: use base 'Chart::Plot'; use Class::MethodMaker # the extra data well put into the Chart::Plot object object_list => [ Chart::Plot::Annotated::_DataPt => '_AnnoData' ], # formatting internals get_set => [ qw [ _anno_xOffset _anno_yOffset _anno_font _anno_color + ] ], # error-reporting get_set => [ '_problem' ];
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Chart::Plot::Annotated Problem
by gam3 (Curate) on Apr 02, 2005 at 15:32 UTC | |
by hubb0r (Pilgrim) on Apr 02, 2005 at 20:40 UTC | |
|
Re: Chart::Plot::Annotated Problem
by tlm (Prior) on Apr 02, 2005 at 07:10 UTC |