[Gtk-sharp-list] Closing an About window

Daniel Borgmann spark-mailinglists@web.de
Sun, 01 Feb 2004 08:25:28 +0100


On Sat, 2004-01-31 at 20:39 -0500, Kevin Breit wrote:
> Hey,
> 	I am using an About window in my Gtk# program.  When I close it, I get
> the following console output:
> 
> (<unknown>:7733): GLib-GObject-WARNING **: gsignal.c:2010: instance
> `0x8317f08' has no handler with id `70'
> 
> The code to close the window is the following:
> 
>         private void OnAboutClose (object o, EventArgs args)
>         {
>                 ab.Destroy();
>         }
> 
> What am I missing?

I had the same problem, until I used Show() instead of Run() to open the
about dialog. 

Daniel