Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re^3: multiple method calls against the same object, revisited

by Aristotle (Chancellor)
on Dec 28, 2004 at 09:57 UTC ( [id://417735]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    {
        .signal_connect( :delete{ Gtk2.main_quit } );
    ...
        .add( .signal_connect( :clicked{ Gtk2.main_quit } ) on Gtk2::Butto
    +n.new( "Quit" ) );
        .show_all;
    } on Gtk2::Window.new( "toplevel" );
    
  2. or download this
    my $window = map {
        $_->signal_connect( delete_event => sub { Gtk2->main_quit } );
    ...
        $_->show_all();
        $_;
    } Gtk2::Window->new( "toplevel" );
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://417735]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (4)
As of 2024-03-29 14:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found