# HG changeset patch # User Casey Harkins # Date 1178404198 0 # Node ID 0aa5e1e5c937e1f04bfc71376ab4e4658c442064 # Parent ba47cfaa013b58e8d3abe1095872dda9d3b5311d 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. diff -r ba47cfaa013b -r 0aa5e1e5c937 pidgin/gtkdocklet.c --- 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; }