| 30 |
30 |
| 31 #ifdef HAVE_MESON_CONFIG |
31 #ifdef HAVE_MESON_CONFIG |
| 32 #include "meson-config.h" |
32 #include "meson-config.h" |
| 33 #endif |
33 #endif |
| 34 |
34 |
| |
35 struct _PidginAboutDialog { |
| |
36 GtkDialog parent; |
| |
37 |
| |
38 /*< private >*/ |
| |
39 PidginAboutDialogPrivate *priv; |
| |
40 }; |
| |
41 |
| |
42 struct _PidginAboutDialogClass { |
| |
43 GtkDialogClass parent; |
| |
44 |
| |
45 void (*_pidgin_reserved1)(void); |
| |
46 void (*_pidgin_reserved2)(void); |
| |
47 void (*_pidgin_reserved3)(void); |
| |
48 void (*_pidgin_reserved4)(void); |
| |
49 }; |
| |
50 |
| 35 struct _PidginAboutDialogPrivate { |
51 struct _PidginAboutDialogPrivate { |
| 36 GtkWidget *close_button; |
52 GtkWidget *close_button; |
| 37 GtkWidget *application_name; |
53 GtkWidget *application_name; |
| 38 GtkWidget *stack; |
54 GtkWidget *stack; |
| 39 |
55 |