Mercurial > pidgin
diff src/conversation.c @ 11671:4ebd27e664c4
[gaim-migrate @ 13957]
1327538 was not the problem, a stale/old gaimosd was.
committer: Tailor Script <tailor@pidgin.im>
| author | Luke Schierer <lschiere@pidgin.im> |
|---|---|
| date | Sat, 15 Oct 2005 19:25:18 +0000 |
| parents | 0940c0077b8c |
| children | 04e0189bb519 |
line wrap: on
line diff
--- a/src/conversation.c Sat Oct 15 17:15:06 2005 +0000 +++ b/src/conversation.c Sat Oct 15 19:25:18 2005 +0000 @@ -532,9 +532,7 @@ conv->features = features; - ops = conv->ui_ops; - if(ops && ops->updated) - ops->updated(conv, GAIM_CONV_UPDATE_FEATURES); + gaim_conversation_update(conv, GAIM_CONV_UPDATE_FEATURES); } @@ -628,10 +626,7 @@ conv->title = g_strdup(title); - ops = gaim_conversation_get_ui_ops(conv); - - if (ops != NULL && ops->updated != NULL) - ops->updated(conv, GAIM_CONV_UPDATE_TITLE); + gaim_conversation_update(conv, GAIM_CONV_UPDATE_TITLE); } const char *
