i would be happy if i would have anything in @_, but debug and a dump show nothing in there.
:) Can you prove it?
In the code you posted you use $_, but $_ is not @_;
To prove you might post sscce like
use ...
my $rawglade = q{<?xml version="1.0" standalone="no"?>
... };
my $gladexml = Gtk2::GladeXML->new_from_buffer( $rawglade );
$gladexml->signal_autoconnect_from_package('main');
sub btnNUM_clicked {
print "yay clicked @_ \n";
}
__END__
yay clicked
yay clicked
OTOH :)
my $button = Gtk2->get_current_event->window |