comparison pidgin/gtkdocklet.c @ 15632:a830f9756f23

Some more pidgininfication
author Daniel Atallah <daniel.atallah@gmail.com>
date Wed, 14 Feb 2007 02:35:35 +0000
parents b74a3bec8dcb
children 878b1f5f64a6
comparison
equal deleted inserted replaced
15630:68798ffeb321 15632:a830f9756f23
141 141
142 /* set tooltip if messages are pending */ 142 /* set tooltip if messages are pending */
143 if (ui_ops->set_tooltip) { 143 if (ui_ops->set_tooltip) {
144 GString *tooltip_text = g_string_new(""); 144 GString *tooltip_text = g_string_new("");
145 for (l = convs, count = 0 ; l != NULL ; l = l->next, count++) { 145 for (l = convs, count = 0 ; l != NULL ; l = l->next, count++) {
146 if (GAIM_IS_GTK_CONVERSATION(l->data)) { 146 if (PIDGIN_IS_PIDGIN_CONVERSATION(l->data)) {
147 PidginConversation *gtkconv = PIDGIN_CONVERSATION((GaimConversation *)l->data); 147 PidginConversation *gtkconv = PIDGIN_CONVERSATION((GaimConversation *)l->data);
148 if (count == DOCKLET_TOOLTIP_LINE_LIMIT - 1) 148 if (count == DOCKLET_TOOLTIP_LINE_LIMIT - 1)
149 g_string_append(tooltip_text, _("Right-click for more unread messages...\n")); 149 g_string_append(tooltip_text, _("Right-click for more unread messages...\n"));
150 else 150 else
151 g_string_append_printf(tooltip_text, 151 g_string_append_printf(tooltip_text,