[gtk+] migrating-unique-GtkApplication: Update to new GApplication api



commit c1f44c0f835fe2a1c0387c9201df9dc8d2eac44d
Author: Javier JardÃn <jjardon gnome org>
Date:   Tue Jan 10 16:23:53 2012 +0000

    migrating-unique-GtkApplication: Update to new GApplication api

 .../gtk/migrating-unique-GtkApplication.xml        |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/docs/reference/gtk/migrating-unique-GtkApplication.xml b/docs/reference/gtk/migrating-unique-GtkApplication.xml
index aaa6645..24bf5bf 100644
--- a/docs/reference/gtk/migrating-unique-GtkApplication.xml
+++ b/docs/reference/gtk/migrating-unique-GtkApplication.xml
@@ -20,7 +20,7 @@
 
   <example><title>A unique application</title>
   <para>Here is a simple application using libunique:
-  <programlisting>
+  <informalexample><programlisting>
 int
 main (int argc, char *argv[])
 {
@@ -53,9 +53,9 @@ main (int argc, char *argv[])
 
   return 0;
 }
-</programlisting>
+</programlisting></informalexample>
 The same application using GtkApplication:
-<programlisting>
+<informalexample><programlisting>
 static void
 activate (GtkApplication *app)
 {
@@ -85,13 +85,13 @@ main (int argc, char *argv[])
   app = gtk_application_new ("org.gtk.TestApplication", 0);
   g_signal_connect (app, "activate", G_CALLBACK (activate), NULL);
 
-  status = g_application_run (app);
+  status = g_application_run (G_APPLICATION (app), argc, argv);
 
   g_object_unref (app);
 
   return status;
 }
-</programlisting>
+</programlisting></informalexample>
 </para>
 </example>
   <section><title>Uniqueness</title>



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]