Fri, 14 Dec 2018 17:21:16 -0600
pidgin: Add documentation for functions in pidgintalkatu.h
This patch adds documentation and therefore annotations to the
functions in pidgin/pidgintalkatu.h. Doing so silences a couple
of warnings when building our GObject introspection.
| 38659 | 1 | #ifndef PIDGIN_ABOUT_H |
| 2 | #define PIDGIN_ABOUT_H | |
| 3 | ||
| 4 | #include <gtk/gtk.h> | |
| 5 | ||
| 6 | #define PIDGIN_TYPE_ABOUT_DIALOG (pidgin_about_dialog_get_type()) | |
| 7 | #define PIDGIN_ABOUT_DIALOG(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PIDGIN_TYPE_ABOUT_DIALOG, PidginAboutDialog)) | |
| 8 | #define PIDGIN_ABOUT_DIALOG_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), PIDGIN_TYPE_ABOUT_DIALOG, PidginAboutDialogClass)) | |
| 9 | #define PIDGIN_IS_ABOUT_DIALOG(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), PIDGIN_TYPE_ABOUT_DIALOG)) | |
| 10 | #define PIDGIN_IS_ABOUT_DIALOG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), PIDGIN_TYPE_ABOUT_DIALOG)) | |
| 11 | #define PIDGIN_ABOUT_DIALOG_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), PIDGIN_TYPE_ABOUT_DIALOG, PidginAboutDialogClass)) | |
| 12 | ||
| 13 | typedef struct _PidginAboutDialog PidginAboutDialog; | |
| 14 | typedef struct _PidginAboutDialogClass PidginAboutDialogClass; | |
| 15 | typedef struct _PidginAboutDialogPrivate PidginAboutDialogPrivate; | |
| 16 | ||
| 17 | G_BEGIN_DECLS | |
| 18 | ||
| 19 | GType pidgin_about_dialog_get_type(void); | |
| 20 | GtkWidget *pidgin_about_dialog_new(void); | |
| 21 | ||
| 22 | G_END_DECLS | |
| 23 | ||
| 24 | #endif /* PIDGIN_ABOUT_H */ | |
| 25 |