Re: Beginner's question: About dialog

2006-05-07 Thread Peter Robinson
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",

Re: Beginner's question: About dialog

2006-05-07 Thread Iago Rubio
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

Re: Beginner's question: About dialog

2006-05-07 Thread Van H Tran
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

Beginner's question: About dialog

2006-05-07 Thread Peter Robinson
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.