pidgin/pidginabout.h

Fri, 14 Dec 2018 18:02:19 -0600

author
Mike Ruprecht <cmaiku@gmail.com>
date
Fri, 14 Dec 2018 18:02:19 -0600
changeset 39396
7b878704dc62
parent 38682
898b14e03449
child 39533
4fbf60ed30c4
permissions
-rw-r--r--

doc: Add missing section documentation to pidginabout.h

This patch adds some section documentation to pidginabout.h, which
when missing caused its entry in the documentation to simply show
its filename.

38659
7772f66662f0 Lots of tweaking/wiring
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
1 #ifndef PIDGIN_ABOUT_H
7772f66662f0 Lots of tweaking/wiring
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
2 #define PIDGIN_ABOUT_H
7772f66662f0 Lots of tweaking/wiring
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
3
39396
7b878704dc62 doc: Add missing section documentation to pidginabout.h
Mike Ruprecht <cmaiku@gmail.com>
parents: 38682
diff changeset
4 /**
7b878704dc62 doc: Add missing section documentation to pidginabout.h
Mike Ruprecht <cmaiku@gmail.com>
parents: 38682
diff changeset
5 * SECTION:pidginabout
7b878704dc62 doc: Add missing section documentation to pidginabout.h
Mike Ruprecht <cmaiku@gmail.com>
parents: 38682
diff changeset
6 * @section_id: pidgin-about
7b878704dc62 doc: Add missing section documentation to pidginabout.h
Mike Ruprecht <cmaiku@gmail.com>
parents: 38682
diff changeset
7 * @short_description: <filename>pidginabout.h</filename>
7b878704dc62 doc: Add missing section documentation to pidginabout.h
Mike Ruprecht <cmaiku@gmail.com>
parents: 38682
diff changeset
8 * @title: About Dialog
7b878704dc62 doc: Add missing section documentation to pidginabout.h
Mike Ruprecht <cmaiku@gmail.com>
parents: 38682
diff changeset
9 */
7b878704dc62 doc: Add missing section documentation to pidginabout.h
Mike Ruprecht <cmaiku@gmail.com>
parents: 38682
diff changeset
10
38659
7772f66662f0 Lots of tweaking/wiring
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
11 #include <gtk/gtk.h>
7772f66662f0 Lots of tweaking/wiring
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
12
7772f66662f0 Lots of tweaking/wiring
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
13 #define PIDGIN_TYPE_ABOUT_DIALOG (pidgin_about_dialog_get_type())
7772f66662f0 Lots of tweaking/wiring
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
14 #define PIDGIN_ABOUT_DIALOG(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PIDGIN_TYPE_ABOUT_DIALOG, PidginAboutDialog))
7772f66662f0 Lots of tweaking/wiring
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
15 #define PIDGIN_ABOUT_DIALOG_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), PIDGIN_TYPE_ABOUT_DIALOG, PidginAboutDialogClass))
7772f66662f0 Lots of tweaking/wiring
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
16 #define PIDGIN_IS_ABOUT_DIALOG(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), PIDGIN_TYPE_ABOUT_DIALOG))
7772f66662f0 Lots of tweaking/wiring
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
17 #define PIDGIN_IS_ABOUT_DIALOG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), PIDGIN_TYPE_ABOUT_DIALOG))
7772f66662f0 Lots of tweaking/wiring
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
18 #define PIDGIN_ABOUT_DIALOG_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), PIDGIN_TYPE_ABOUT_DIALOG, PidginAboutDialogClass))
7772f66662f0 Lots of tweaking/wiring
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
19
7772f66662f0 Lots of tweaking/wiring
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
20 typedef struct _PidginAboutDialog PidginAboutDialog;
7772f66662f0 Lots of tweaking/wiring
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
21 typedef struct _PidginAboutDialogClass PidginAboutDialogClass;
7772f66662f0 Lots of tweaking/wiring
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
22 typedef struct _PidginAboutDialogPrivate PidginAboutDialogPrivate;
7772f66662f0 Lots of tweaking/wiring
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
23
7772f66662f0 Lots of tweaking/wiring
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
24 G_BEGIN_DECLS
7772f66662f0 Lots of tweaking/wiring
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
25
7772f66662f0 Lots of tweaking/wiring
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
26 GType pidgin_about_dialog_get_type(void);
7772f66662f0 Lots of tweaking/wiring
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
27 GtkWidget *pidgin_about_dialog_new(void);
7772f66662f0 Lots of tweaking/wiring
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
28
7772f66662f0 Lots of tweaking/wiring
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
29 G_END_DECLS
7772f66662f0 Lots of tweaking/wiring
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
30
7772f66662f0 Lots of tweaking/wiring
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
31 #endif /* PIDGIN_ABOUT_H */
7772f66662f0 Lots of tweaking/wiring
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
32

mercurial