comparison finch/gntblist.c @ 18635:5551e5ec1ce0

Insert a newline in the tooltip.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Tue, 24 Jul 2007 21:44:24 +0000
parents 4fda1fc6d7cf
children c8ad802a6167 f0b25c6fa806
comparison
equal deleted inserted replaced
18624:81dcdd73dff0 18635:5551e5ec1ce0
1323 purple_notify_user_info_destroy(user_info); 1323 purple_notify_user_info_destroy(user_info);
1324 1324
1325 strip = purple_markup_strip_html(tmp); 1325 strip = purple_markup_strip_html(tmp);
1326 g_string_append(str, strip); 1326 g_string_append(str, strip);
1327 1327
1328 if (purple_presence_is_status_primitive_active(presence, PURPLE_STATUS_MOBILE)) 1328 if (purple_presence_is_status_primitive_active(presence, PURPLE_STATUS_MOBILE)) {
1329 g_string_append(str, "\n");
1329 g_string_append(str, _("On Mobile")); 1330 g_string_append(str, _("On Mobile"));
1331 }
1330 1332
1331 g_free(strip); 1333 g_free(strip);
1332 g_free(tmp); 1334 g_free(tmp);
1333 } 1335 }
1334 1336