aboutsummaryrefslogtreecommitdiffstats
path: root/mail/message-tag-editor.c
diff options
context:
space:
mode:
Diffstat (limited to 'mail/message-tag-editor.c')
-rw-r--r--mail/message-tag-editor.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/mail/message-tag-editor.c b/mail/message-tag-editor.c
index b7d8ca8f86..7d7f6d420b 100644
--- a/mail/message-tag-editor.c
+++ b/mail/message-tag-editor.c
@@ -44,19 +44,19 @@ message_tag_editor_get_type (void)
static GType type = 0;
if (!type) {
- GTypeInfo type_info = {
+ static const GTypeInfo info = {
sizeof (MessageTagEditorClass),
- NULL,
- NULL,
+ NULL, /* base_class_init */
+ NULL, /* base_class_finalize */
(GClassInitFunc) message_tag_editor_class_init,
- NULL,
- NULL,
+ NULL, /* class_finalize */
+ NULL, /* class_data */
sizeof (MessageTagEditor),
0,
(GInstanceInitFunc) message_tag_editor_init,
};
- type = g_type_register_static (gtk_dialog_get_type (), "MessageTagEditor", &type_info, 0);
+ type = g_type_register_static (gtk_dialog_get_type (), "MessageTagEditor", &info, 0);
}
return type;