comparison pidgin/gtkconv.c @ 32169:84ac2406bb10

gtkconv: Remove a redundant lookup, as that just calls purple_conv_chat_cb_find()
author Paul Aurich <paul@darkrain42.org>
date Tue, 21 Jun 2011 01:58:17 +0000
parents 35395b98f6b5
children 298685661f89
comparison
equal deleted inserted replaced
32168:4dabe4bdfb29 32169:84ac2406bb10
6287 } 6287 }
6288 6288
6289 f = gtk_tree_model_iter_next(GTK_TREE_MODEL(model), &iter); 6289 f = gtk_tree_model_iter_next(GTK_TREE_MODEL(model), &iter);
6290 6290
6291 g_free(val); 6291 g_free(val);
6292 }
6293
6294 if (!purple_conv_chat_find_user(chat, user))
6295 {
6296 g_free(alias);
6297 return;
6298 } 6292 }
6299 6293
6300 g_return_if_fail(alias != NULL); 6294 g_return_if_fail(alias != NULL);
6301 6295
6302 cbuddy = purple_conv_chat_cb_find(chat, user); 6296 cbuddy = purple_conv_chat_cb_find(chat, user);