Fri, 14 Dec 2018 18:02:19 -0600
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 | 1 | #ifndef PIDGIN_ABOUT_H |
| 2 | #define PIDGIN_ABOUT_H | |
| 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 | 11 | #include <gtk/gtk.h> |
| 12 | ||
| 13 | #define PIDGIN_TYPE_ABOUT_DIALOG (pidgin_about_dialog_get_type()) | |
| 14 | #define PIDGIN_ABOUT_DIALOG(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PIDGIN_TYPE_ABOUT_DIALOG, PidginAboutDialog)) | |
| 15 | #define PIDGIN_ABOUT_DIALOG_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), PIDGIN_TYPE_ABOUT_DIALOG, PidginAboutDialogClass)) | |
| 16 | #define PIDGIN_IS_ABOUT_DIALOG(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), PIDGIN_TYPE_ABOUT_DIALOG)) | |
| 17 | #define PIDGIN_IS_ABOUT_DIALOG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), PIDGIN_TYPE_ABOUT_DIALOG)) | |
| 18 | #define PIDGIN_ABOUT_DIALOG_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), PIDGIN_TYPE_ABOUT_DIALOG, PidginAboutDialogClass)) | |
| 19 | ||
| 20 | typedef struct _PidginAboutDialog PidginAboutDialog; | |
| 21 | typedef struct _PidginAboutDialogClass PidginAboutDialogClass; | |
| 22 | typedef struct _PidginAboutDialogPrivate PidginAboutDialogPrivate; | |
| 23 | ||
| 24 | G_BEGIN_DECLS | |
| 25 | ||
| 26 | GType pidgin_about_dialog_get_type(void); | |
| 27 | GtkWidget *pidgin_about_dialog_new(void); | |
| 28 | ||
| 29 | G_END_DECLS | |
| 30 | ||
| 31 | #endif /* PIDGIN_ABOUT_H */ | |
| 32 |