Mercurial > pidgin
comparison src/conversation.c @ 11676:0c54f9b0e67c
[gaim-migrate @ 13962]
I spent a lot of time getting rid of the warnings from gcc 4 (Stu probably
did, too). Please compile with -Wall
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Mon, 17 Oct 2005 05:32:33 +0000 |
parents | 04e0189bb519 |
children | bcc49c25ef90 |
comparison
equal
deleted
inserted
replaced
11675:828802f2251b | 11676:0c54f9b0e67c |
---|---|
533 | 533 |
534 | 534 |
535 void | 535 void |
536 gaim_conversation_set_features(GaimConversation *conv, GaimConnectionFlags features) | 536 gaim_conversation_set_features(GaimConversation *conv, GaimConnectionFlags features) |
537 { | 537 { |
538 GaimConversationUiOps *ops; | |
539 | |
540 g_return_if_fail(conv != NULL); | 538 g_return_if_fail(conv != NULL); |
541 | 539 |
542 conv->features = features; | 540 conv->features = features; |
543 | 541 |
544 gaim_conversation_update(conv, GAIM_CONV_UPDATE_FEATURES); | 542 gaim_conversation_update(conv, GAIM_CONV_UPDATE_FEATURES); |
623 } | 621 } |
624 | 622 |
625 void | 623 void |
626 gaim_conversation_set_title(GaimConversation *conv, const char *title) | 624 gaim_conversation_set_title(GaimConversation *conv, const char *title) |
627 { | 625 { |
628 GaimConversationUiOps *ops; | |
629 | |
630 g_return_if_fail(conv != NULL); | 626 g_return_if_fail(conv != NULL); |
631 g_return_if_fail(title != NULL); | 627 g_return_if_fail(title != NULL); |
632 | 628 |
633 if (conv->title != NULL) | 629 if (conv->title != NULL) |
634 g_free(conv->title); | 630 g_free(conv->title); |