Skip Menu |

This queue is for tickets about the App-Devel-MAT-Explorer-GTK CPAN distribution.

Report information
The Basics
Id: 117224
Status: open
Priority: 0/
Queue: App-Devel-MAT-Explorer-GTK

People
Owner: Nobody in particular
Requestors: HKCLARK [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: 0.03



Subject: Undefined subroutine &App::Devel::MAT::Explorer::GTK::SVDetail::bytes2size
Hi Paul, I was getting these errors any time I double clicked / hit Enter on an item with > 1024 bytes: *** Undefined subroutine &App::Devel::MAT::Explorer::GTK::SVDetail::bytes2size called at /home/kclark/perl5/lib/perl5/App/Devel/MAT/Explorer/GTK/SVDetail.pm line 55. *** ignoring at /home/kclark/perl5/bin/pmat-explore-gtk line 447. I think this part of App::Devel::MAT::Explorer::GTK::SVDetail::bytes2size should be changed from: my $sizestr = $sv->size; if( $sv->size > 1024 ) { $sizestr = bytes2size( $sv->size ) . " ($sizestr)"; } To: my $sizestr = $sv->size; if( $sv->size > 1024 ) { $sizestr = &main::bytes2size( $sv->size ) . " ($sizestr)"; }
On Thu Aug 25 19:43:53 2016, HKCLARK wrote: Show quoted text
> I think this part of > App::Devel::MAT::Explorer::GTK::SVDetail::bytes2size should be changed > from:
... Show quoted text
> To: > > my $sizestr = $sv->size; > if( $sv->size > 1024 ) { > $sizestr = &main::bytes2size( $sv->size ) . " ($sizestr)"; > }
Yeah; that looks plausible. Latest source has a neater fix; will be in the next released version. -- Paul Evans
On Mon Sep 05 17:33:01 2016, PEVANS wrote: Show quoted text
> Yeah; that looks plausible. Latest source has a neater fix; will be in > the next released version.
Released in 0.03 -- Paul Evans
Subject: Re: [rt.cpan.org #117224] Undefined subroutine &App::Devel::MAT::Explorer::GTK::SVDetail::bytes2size
Date: Fri, 9 Sep 2016 18:39:18 -0400
To: bug-App-Devel-MAT-Explorer-GTK [...] rt.cpan.org
From: HKCLARK [...] cpan.org
Great. Thanks, Paul! On 9/9/2016 5:26 PM, Paul Evans via RT wrote: Show quoted text
> <URL: https://rt.cpan.org/Ticket/Display.html?id=117224 > > > On Mon Sep 05 17:33:01 2016, PEVANS wrote:
>> Yeah; that looks plausible. Latest source has a neater fix; will be in >> the next released version.
> Released in 0.03 >