comparison libpurple/media.c @ 23772:750d700098c1

Fix the prplinfo structs and get rid of some compile warnings.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Sat, 29 Dec 2007 16:54:15 +0000
parents f0e32b734ef7
children 92e71f6e10d4
comparison
equal deleted inserted replaced
23770:b20e24fcae47 23772:750d700098c1
97 (GClassInitFunc) purple_media_class_init, 97 (GClassInitFunc) purple_media_class_init,
98 NULL, 98 NULL,
99 NULL, 99 NULL,
100 sizeof(PurpleMedia), 100 sizeof(PurpleMedia),
101 0, 101 0,
102 (GInstanceInitFunc) purple_media_init 102 (GInstanceInitFunc) purple_media_init,
103 NULL
103 }; 104 };
104 type = g_type_register_static(G_TYPE_OBJECT, "PurpleMedia", &info, 0); 105 type = g_type_register_static(G_TYPE_OBJECT, "PurpleMedia", &info, 0);
105 } 106 }
106 return type; 107 return type;
107 } 108 }