diff --git a/docs/reference/gtk/tmpl/gtkvpaned.sgml b/docs/reference/gtk/tmpl/gtkvpaned.sgml
deleted file mode 100644
index b894b6dfe9..0000000000
--- a/docs/reference/gtk/tmpl/gtkvpaned.sgml
+++ /dev/null
@@ -1,35 +0,0 @@
-
-GtkVPaned
-
-
-A container with two panes arranged vertically
-
-
-
-The VPaned widget is a container widget with two
-children arranged vertically. The division between
-the two panes is adjustable by the user by dragging
-a handle. See #GtkPaned for details.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Create a new #GtkVPaned
-
-
-@Returns: the new #GtkVPaned
-
-
diff --git a/gtk/gtkvpaned.c b/gtk/gtkvpaned.c
index 42bba68ede..7b9e38f16a 100644
--- a/gtk/gtkvpaned.c
+++ b/gtk/gtkvpaned.c
@@ -30,6 +30,17 @@
#include "gtkvpaned.h"
#include "gtkalias.h"
+/**
+ * SECTION:gtkvpaned
+ * @Short_description: A container with two panes arranged vertically
+ * @Title: GtkVPaned
+ *
+ * The VPaned widget is a container widget with two
+ * children arranged vertically. The division between
+ * the two panes is adjustable by the user by dragging
+ * a handle. See #GtkPaned for details.
+ */
+
G_DEFINE_TYPE (GtkVPaned, gtk_vpaned, GTK_TYPE_PANED)
static void
@@ -44,6 +55,13 @@ gtk_vpaned_init (GtkVPaned *vpaned)
GTK_ORIENTATION_VERTICAL);
}
+/**
+ * gtk_vpaned_new:
+ *
+ * Create a new #GtkVPaned
+ *
+ * Returns: the new #GtkVPaned
+ */
GtkWidget *
gtk_vpaned_new (void)
{