X-Git-Url: http://git.vpit.fr/?p=perl%2Fscripts%2Fxchat.git;a=blobdiff_plain;f=Xchat%2FXPI%2FUtils.pm;h=6fa15c1e4524ea9f6f0c94d56f5d08bb8e28d90f;hp=30f31c633fd923a664d4efbf4f2864a06d9f2467;hb=d0506fe825279c4658116b8b09fabf51f943a8cd;hpb=c89e62b2896ac98ebdfac7d77d6dc31e2db3c6a5 diff --git a/Xchat/XPI/Utils.pm b/Xchat/XPI/Utils.pm index 30f31c6..6fa15c1 100644 --- a/Xchat/XPI/Utils.pm +++ b/Xchat/XPI/Utils.pm @@ -8,9 +8,7 @@ use Xchat qw/:all/; use lib get_info 'xchatdir'; use Xchat::XPI qw/register init/; -our $VERSION = '0.01'; - -my $ph; +our $VERSION = '0.02'; sub dye_nick { my ($nick, $col) = ($_[0], 0); @@ -29,13 +27,4 @@ our %EXPORT_TAGS = ('funcs' => [ qw/dye_nick/ ]); our @EXPORT_OK = map { @$_ } values %EXPORT_TAGS; $EXPORT_TAGS{'all'} = [ @EXPORT_OK ]; -$ph = Xchat::XPI->new( - name => 'Extended Xchat Perl Interface :: Utils', - tag => 'XPI::Utils', - desc => 'Utility functions', - author => 'Vincent Pit (VPIT)', - email => 'perl@profvince.com', - url => 'http://www.profvince.com', -); - 1;