comparison finch/gntrequest.c @ 18058:4ca97b26a8fb

Mark the return type const for the following functions. I noticed this while fixing some DBus stuff which I'll commit shortly. * purple_accounts_get_all * purple_connections_get_all * purple_connections_get_connecting * purple_conv_chat_get_ignored * purple_conv_chat_get_users * purple_get_chats * purple_get_conversations * purple_get_ims * purple_notify_user_info_get_entries References #1344
author Richard Laager <rlaager@wiktel.com>
date Thu, 07 Jun 2007 04:22:42 +0000
parents a236c67e39b6
children 926ccb104da0 fc6d1088cb27 eb49b371cf9a
comparison
equal deleted inserted replaced
18057:23b03396e71e 18058:4ca97b26a8fb
488 } 488 }
489 else if (type == PURPLE_REQUEST_FIELD_ACCOUNT) 489 else if (type == PURPLE_REQUEST_FIELD_ACCOUNT)
490 { 490 {
491 gboolean all; 491 gboolean all;
492 PurpleAccount *def; 492 PurpleAccount *def;
493 GList *list; 493 const GList *list;
494 GntWidget *combo = gnt_combo_box_new(); 494 GntWidget *combo = gnt_combo_box_new();
495 gnt_box_set_alignment(GNT_BOX(hbox), GNT_ALIGN_MID); 495 gnt_box_set_alignment(GNT_BOX(hbox), GNT_ALIGN_MID);
496 gnt_box_add_widget(GNT_BOX(hbox), combo); 496 gnt_box_add_widget(GNT_BOX(hbox), combo);
497 field->ui_data = combo; 497 field->ui_data = combo;
498 498