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 learn

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 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, version,