Skip Menu |

This queue is for tickets about the Curses-UI-POE CPAN distribution.

Report information
The Basics
Id: 60131
Status: new
Priority: 0/
Queue: Curses-UI-POE

People
Owner: Nobody in particular
Requestors: parekh.deven [...] gmail.com
Cc:
AdminCc:

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



Subject: args option is not passed to _start of inline_states
Date: Fri, 6 Aug 2010 02:07:44 -0500
To: bug-Curses-UI-POE [...] rt.cpan.org
From: Deven Parekh <parekh.deven [...] gmail.com>
Hi, Currently the args options specified in the new constructor of Curses::UI::POE is not passed on to the _start event handler specified in the inline_states I think the following change will fix this. # Wait until the kernel actually starts before we muck with things. sub _start { $_[KERNEL]->yield("init",@_[ARG0..$#_]) } --- DP