2010/6/10 Richard Hughes :
> On 10 June 2010 10:34, Alberto Ruiz 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 lot of people are going to g
On 10 June 2010 10:34, Alberto Ruiz 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 list
gtk-deve
2010/6/9 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 do
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 t