Telcontar on #pidgin-win32 pointed out that the "New..." and "Saved..."

Sat, 05 May 2007 22:29:58 +0000

author
Casey Harkins <charkins@pidgin.im>
date
Sat, 05 May 2007 22:29:58 +0000
changeset 16960
6d97980fed84
parent 16959
5ae554ed8299
child 16970
f923c22f7b29

Telcontar on #pidgin-win32 pointed out that the "New..." and "Saved..."
menu items in the docklet's change status menu were using the available
status icon. The statusbox on the blist doesn't use any icon for these,
so the docklet shouldn't either.

pidgin/gtkdocklet.c file | annotate | diff | comparison | revisions
--- a/pidgin/gtkdocklet.c	Sat May 05 21:20:05 2007 +0000
+++ b/pidgin/gtkdocklet.c	Sat May 05 22:29:58 2007 +0000
@@ -486,8 +486,8 @@
 
 	pidgin_separator(submenu);
 
-	new_menu_item_with_status_icon(submenu, _("New..."), PURPLE_STATUS_AVAILABLE, G_CALLBACK(show_custom_status_editor_cb), NULL, 0, 0, NULL);
-	new_menu_item_with_status_icon(submenu, _("Saved..."), PURPLE_STATUS_AVAILABLE, G_CALLBACK(pidgin_status_window_show), NULL, 0, 0, NULL);
+	pidgin_new_item_from_stock(submenu, _("New..."), NULL, G_CALLBACK(show_custom_status_editor_cb), NULL, 0, 0, NULL);
+	pidgin_new_item_from_stock(submenu, _("Saved..."), NULL, G_CALLBACK(pidgin_status_window_show), NULL, 0, 0, NULL);
 
 	return menuitem;
 }

mercurial