Anyone else think that's strange...?

Nope, not really :)

why I am getting that

because of the way you write code :) write it like this ( cope with scoping , avoid closures, don't create objects you don't need, don't destroy objects while closureing over them, don't run mainloops for modal dialogs ... so you don't get order of destruction weirdness related messages )

#!/usr/bin/perl -- use strict; use warnings; use Gtk2 -init; use Glib qw/TRUE FALSE/; mme( @ARGV ) for 1 .. 2; sub mme { my $msg_dialog = Gtk2::MessageDialog->new_with_markup( undef, 'modal', 'error', 'yes-no', "Would you like to retry the connection?", ); $msg_dialog->set_title("No Connection Found"); $msg_dialog->set_destroy_with_parent(TRUE); $msg_dialog->signal_connect ( response => \&shimmy, ); printf "runned %s\n", $msg_dialog->run(); } sub shimmy { my ($self, $response) = @_; print "$self $response\n"; } __END__ Gtk2::MessageDialog=HASH(0xc6e674) yes runned yes Gtk2::MessageDialog=HASH(0xb33d24) no runned no

see sub DESTROY: Strange ordering of object destruction (global destruction order not guaranteed, Re^3: when is destroy function called ( perl -d:Trace dalek )

:) Re: Win32::GUI window freezing, even with threading. (win32-gui-tk-thread-dequeue.pl, Thread::Queue::popnow/push) + Re^4: Win32::GUI window freezing, even with threading. (Wrong solution), Re: Tk: Creating label in hash, Re: perl Tk thread help, Re: error on file open, Re^4: Query the height of Tk::Text widget with word wrap

Gtk+/Gnome Application Development - The Main Loop

10.17. How do I run a dialog without running another main loop?

Tutorials: Variable Scoping in Perl: the basics,
Coping with Scoping , Mini-Tutorial: Perl's Memory Management,
Lexical scoping like a fox,
Read this if you want to cut your development time in half!,
Closure on Closures , perlref#Circular References,
Memory leaks and circular references,
Circular references and Garbage collection.,
make perl release memory,
about memory management , Re^3: Scope of lexical variables in the main script , Re: What's the weaken here for?,
Devel::Cycle,
Devel::NYTProf,
Devel::Leak Devel::LeakTrace,
WeakRef

see Re: No such file or directory error/No such file or directory error, see template at (tye)Re: Stupid question (and see one discussion of that template at Re^2: RFC: Creating unicursal stars

tk closures people, Re: TK Submenus (Tk::Menu , global variables/ spirit of strict), tk scoping function argument passing, can't share Tk mainwondow between threads


In reply to Re^2: Perl Gtk2 - ->destroy() is Not Causing the Script to Exit by Anonymous Monk
in thread Perl Gtk2 - ->destroy() is Not Causing the Script to Exit by mmartin

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.