changeset 16911:0aa5e1e5c937

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.
author Casey Harkins <charkins@pidgin.im>
date Sat, 05 May 2007 22:29:58 +0000
parents ba47cfaa013b
children fdc345732a3d
files pidgin/gtkdocklet.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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;
 }