Skip Menu |

This queue is for tickets about the deskpad CPAN distribution.

Report information
The Basics
Id: 4750
Status: resolved
Priority: 0/
Queue: deskpad

People
Owner: rkies [...] cpan.org
Requestors: cpan-rt [...] downlode.org
Cc:
AdminCc:

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



Subject: Missing hyphens in pack statements
There are a couple of missing hyphens in pack statements in deskpad that stop it from working. The attached patch fixes this.
--- deskpad 2003-12-24 12:02:57.000000000 +0000 +++ deskpad-new 2003-12-24 12:04:13.000000000 +0000 @@ -347,12 +347,12 @@ $self -> {titleframe} -> Button( -text => '>', -command => [\&next_month]) - -> pack( -side => 'left', anchor => 'e' ); + -> pack( -side => 'left', -anchor => 'e' ); $nextyearbutton = $self -> {titleframe} -> Button( -text => '>>', -command => [\&next_year] ) - -> pack( -side => 'left', anchor => 'e' ); + -> pack( -side => 'left', -anchor => 'e' ); } sub insert_day_numbers {