Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re^2: good stable GUI library?

by bcrowell2 (Friar)
on Oct 20, 2005 at 15:04 UTC ( [id://501689]=note: print w/replies, xml ) Need Help??


in reply to Re: good stable GUI library?
in thread good stable GUI library?

The biggest problems I've had have been with new releases of Perl/Tk breaking old code. For instance, here's a patch I had to make because Tk804.025 broke my app:
2915c2924,2926 < sub{$self->clicked_on_assignment($self->{ASS_KEYS}->[$ass_ +lb->curselection()])} --- > # sub{$self->clicked_on_assignment($self->{ASS_KEYS}->[$as +s_lb->curselection()])} > # ... used to work, but no longer does > sub{$self->clicked_on_assignment($self->{ASS_KEYS}->[$name +_to_key{$ass_lb->get($ass_lb->curselection())}])}

Of course, it's always possible that I was depending on behavior that was actually not supposed to be documented and reliable behavior. I'd have to go back and look at the docs I was using (the O'Reilly Mastering Perl/Tk book) and see.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (3)
As of 2024-04-25 12:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found