[Gtk-sharp-list] problem with Gnome.About
Gonzalo Paniagua Javier
gonzalo@ximian.com
06 May 2003 23:52:05 +0200
El mar, 06 de 05 de 2003 a las 23:10, Joseph Monti escribió:
> Hi,
>
> I'm new to C#/GTK# and ran into a problem with creating a new
> Gnome.About
>
> Here is how I create it:
>
> Gnome.About myAbout = new Gnome.About(
> "Code Connector", "0.1",
> "(C) 2003 Joseph Monti, GNU General Public License",
> "A Description",
> new string [] {"Me"},
> new string[] {}, "", null);
>
> This is created in a callback.
>
> Here is what happens at a console:
>
> (<unknown>:2986): GLib-GObject-WARNING **: instance of invalid
> non-instantiatable type `<invalid>'
There's a bug filled about this issue.
What I do is:
GC.SuppressFinalize (about);
and then run it.
-Gonzalo