diff --git a/docs/reference/gdk/tmpl/.gitignore b/docs/reference/gdk/tmpl/.gitignore
index 9c314b9911..a05bd1c699 100644
--- a/docs/reference/gdk/tmpl/.gitignore
+++ b/docs/reference/gdk/tmpl/.gitignore
@@ -1,6 +1,7 @@
cairo_interaction.sgml
colors.sgml
dnd.sgml
+gdkapplaunchcontext.sgml
pixbufs.sgml
regions.sgml
windows.sgml
diff --git a/docs/reference/gdk/tmpl/gdkapplaunchcontext.sgml b/docs/reference/gdk/tmpl/gdkapplaunchcontext.sgml
deleted file mode 100644
index 78928a4ebe..0000000000
--- a/docs/reference/gdk/tmpl/gdkapplaunchcontext.sgml
+++ /dev/null
@@ -1,110 +0,0 @@
-
-Application launching
-
-
-Startup notification for applications
-
-
-
-GdkAppLaunchContext is an implementation of #GAppLaunchContext that
-handles launching an application in a graphical context. It provides
-startup notification and allows to launch applications on a specific
-screen or workspace.
-
-
-Launching an application
-
-GdkAppLaunchContext *context;
-
-context = gdk_app_launch_context_new ();
-
-gdk_app_launch_context_set_screen (my_screen);
-gdk_app_launch_context_set_timestamp (event->time);
-
-if (!g_app_info_launch_default_for_uri ("http://www.gtk.org", context, &error))
- g_warning ("Launching failed: %s\n", error->message);
-
-g_object_unref (context);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-An opaque structure representing an application launch context.
-
-
-
-
-
-
-
-
-@void:
-@Returns:
-
-
-
-
-
-
-
-@context:
-@display:
-
-
-
-
-
-
-
-@context:
-@screen:
-
-
-
-
-
-
-
-@context:
-@desktop:
-
-
-
-
-
-
-
-@context:
-@timestamp:
-
-
-
-
-
-
-
-@context:
-@icon:
-
-
-
-
-
-
-
-@context:
-@icon_name:
-
-
diff --git a/gdk/gdkapplaunchcontext.c b/gdk/gdkapplaunchcontext.c
index 46fd99a4fd..1bd4dbbf29 100644
--- a/gdk/gdkapplaunchcontext.c
+++ b/gdk/gdkapplaunchcontext.c
@@ -29,6 +29,34 @@
#include "gdkintl.h"
+/**
+ * SECTION:gdkapplaunchcontext
+ * @Short_description: Startup notification for applications
+ * @Title: Application launching
+ *
+ * GdkAppLaunchContext is an implementation of #GAppLaunchContext that
+ * handles launching an application in a graphical context. It provides
+ * startup notification and allows to launch applications on a specific
+ * screen or workspace.
+ *
+ * Launching an application
+ *
+ * GdkAppLaunchContext *context;
+ *
+ * context = gdk_app_launch_context_new ();
+ *
+ * gdk_app_launch_context_set_screen (my_screen);
+ * gdk_app_launch_context_set_timestamp (event->time);
+ *
+ * if (!g_app_info_launch_default_for_uri ("http://www.gtk.org", context, &error))
+ * g_warning ("Launching failed: %s\n", error->message);
+ *
+ * g_object_unref (context);
+ *
+ *
+ */
+
+
static void gdk_app_launch_context_finalize (GObject *object);
static gchar * gdk_app_launch_context_get_display (GAppLaunchContext *context,
GAppInfo *info,