GNOME Bugzilla – Bug 743638
getting-started: Update example-0.c to use GtkApplication
Last modified: 2015-01-28 21:34:06 UTC
Created attachment 295641 [details] [review] update window-default.c, to comply with GtkApplication https://developer.gnome.org/gtk3/stable/gtk-getting-started.html#id-1.2.3.3 The current basic window example is out of date. This patch changes the example to make it comply with: https://wiki.gnome.org/HowDoI/GtkApplication The patch needs to be checked for non-common conventions. If the patch is okay, I will update the section's text too.
Review of attachment 295641 [details] [review]: Looks good to me
Review of attachment 295641 [details] [review]: ::: examples/window-default.c @@ +22,1 @@ + app = gtk_application_new (org.gtk.example, G_APPLICATION_FLAGS_NONE); "org.gtk.example" should be a string.
Created attachment 295643 [details] [review] added "" around org.gtk.example fixed, thanks both.