Thanks!, that did the trick.
On Sun, May 07, 2006 at 10:40:28AM +0200, Iago Rubio wrote:
> You're mixing up the shorthand constructor "gtk_show_about_dialog" with
> a dialog of your own.
>
> Just use:
>
> gtk_show_about_dialog ( NULL, // or the parent window
>"version",
You're mixing up the shorthand constructor "gtk_show_about_dialog" with
a dialog of your own.
Just use:
gtk_show_about_dialog ( NULL, // or the parent window
"version", version,
"website", website,
// all other properties
Hi, my guess is that the gtk_show_about_dialog(),
you're missing the value for "verions", and also
argument list is ended with a NULL. In your case, it
does not. So that could the problem.
Cheers,
--- Peter Robinson <[EMAIL PROTECTED]> wrote:
> Hi guys and gals,
>
> I have recently started to
Hi guys and gals,
I have recently started to learn GTK and haven't been able to find answers to
some simple questions in the online docs or by Googling, I hope someone has the
patience to bear with me...
I am trying to create an 'about' dialog, but there seems to be some problem
with my code.