Re: GApplication and GtkApplication oddness

2010-06-10 Thread Alberto Ruiz
2010/6/9 Richard Hughes hughsi...@gmail.com: With GApplication we have:        application = g_application_new_and_register (org.gnome.ColorManager.Prefs, argc, argv); and with GtkApplication we have:        application = gtk_application_new (argc, argv, org.gnome.ColorManager.Prefs);

Re: GApplication and GtkApplication oddness

2010-06-10 Thread Richard Hughes
On 10 June 2010 10:34, Alberto Ruiz ar...@gnome.org wrote: I do think it matters a lot, there should be consistency between calls, good catch. For what it's worth, I prefer the glib style, so the app-id goes first. Richard. ___ gtk-devel-list mailing

Re: GApplication and GtkApplication oddness

2010-06-10 Thread Alberto Ruiz
2010/6/10 Richard Hughes hughsi...@gmail.com: On 10 June 2010 10:34, Alberto Ruiz ar...@gnome.org wrote: I do think it matters a lot, there should be consistency between calls, good catch. For what it's worth, I prefer the glib style, so the app-id goes first. I guess it makes sense since a

GApplication and GtkApplication oddness

2010-06-09 Thread Richard Hughes
With GApplication we have: application = g_application_new_and_register (org.gnome.ColorManager.Prefs, argc, argv); and with GtkApplication we have: application = gtk_application_new (argc, argv, org.gnome.ColorManager.Prefs); It does seem slightly odd that the former has the