diff options
Diffstat (limited to 'perl-install/Newt/Newt.pm')
-rw-r--r-- | perl-install/Newt/Newt.pm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/perl-install/Newt/Newt.pm b/perl-install/Newt/Newt.pm index 4b7c9a995..1a93f02a0 100644 --- a/perl-install/Newt/Newt.pm +++ b/perl-install/Newt/Newt.pm @@ -9,8 +9,12 @@ use vars qw($VERSION @ISA); $VERSION = '0.01'; Newt->bootstrap($VERSION); -package Newt::Component; # $Id$ -package Newt::Grid; # $Id$ +package Newt::Component; +our @ISA = qw(); # help perl_checker + +package Newt::Grid; + +our @ISA = qw(); # help perl_checker 1; |