comparison src/themes.c @ 4398:a8249a5250b6

[gaim-migrate @ 4667] Made use of the new GAIM_IS_GTK_WINDOW() and GAIM_IS_GTK_CONVERSATION() macros. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Wed, 22 Jan 2003 23:46:59 +0000
parents 90eaa3486949
children 5cdfd20daa07
comparison
equal deleted inserted replaced
4397:ce3a0eba91ef 4398:a8249a5250b6
182 GList *cnv; 182 GList *cnv;
183 183
184 for (cnv = gaim_get_conversations(); cnv != NULL; cnv = cnv->next) { 184 for (cnv = gaim_get_conversations(); cnv != NULL; cnv = cnv->next) {
185 struct gaim_conversation *conv = cnv->data; 185 struct gaim_conversation *conv = cnv->data;
186 186
187 if (gaim_conversation_get_ops(conv) == 187 if (GAIM_IS_GTK_CONVERSATION(conv))
188 gaim_get_gtk_conversation_ops()) {
189
190 smiley_themeize(GAIM_GTK_CONVERSATION(conv)->imhtml); 188 smiley_themeize(GAIM_GTK_CONVERSATION(conv)->imhtml);
191 }
192 } 189 }
193 } 190 }
194 191
195 g_free(dirname); 192 g_free(dirname);
196 return old ? NULL : theme; 193 return old ? NULL : theme;