summaryrefslogtreecommitdiff
path: root/pidgin/gtkroomlist.c
diff options
context:
space:
mode:
authorRichard Laager <rlaager@pidgin.im>2007-06-07 04:22:42 +0000
committerRichard Laager <rlaager@pidgin.im>2007-06-07 04:22:42 +0000
commit72b6031dbd986f062e20f782f9dadb601af055d7 (patch)
tree6f671a9269eb07af8cde27334f9ec2c398891e71 /pidgin/gtkroomlist.c
parentb35cb10e6354e367ce6281e144ccfe8ab67507b4 (diff)
downloadpidgin-72b6031dbd986f062e20f782f9dadb601af055d7.tar.gz
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
Diffstat (limited to 'pidgin/gtkroomlist.c')
-rw-r--r--pidgin/gtkroomlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pidgin/gtkroomlist.c b/pidgin/gtkroomlist.c
index 59b520f82e..15023064eb 100644
--- a/pidgin/gtkroomlist.c
+++ b/pidgin/gtkroomlist.c
@@ -343,7 +343,7 @@ static gboolean account_filter_func(PurpleAccount *account)
gboolean
pidgin_roomlist_is_showable()
{
- GList *c;
+ const GList *c;
PurpleConnection *gc;
for (c = purple_connections_get_all(); c != NULL; c = c->next) {