# HG changeset patch # User Mark Doliner # Date 1094702207 0 # Node ID e651dbb88773d5e2979c11585f35fa85d7245ac7 # Parent bdec08a8fc5bb46a60771b0207e60b52d82dccd3 [gaim-migrate @ 10907] Add an "About" menu option to the system tray in head. I'm against adding this to oldstatus, but I don't really care. I'm mostly against it because I think oldstatus should be bug fixes only, and avoiding new strings is a good thing. I want to avoid maintaining 2 branches. committer: Tailor Script diff -r bdec08a8fc5b -r e651dbb88773 plugins/docklet/docklet.c --- a/plugins/docklet/docklet.c Thu Sep 09 03:36:35 2004 +0000 +++ b/plugins/docklet/docklet.c Thu Sep 09 03:56:47 2004 +0000 @@ -220,7 +220,8 @@ break; } - gaim_new_item_from_stock(menu, _("Quit"), GTK_STOCK_QUIT, G_CALLBACK(gaim_core_quit), NULL, 0, 0, 0); + gaim_new_item_from_stock(menu, _("About"), GAIM_STOCK_ABOUT, G_CALLBACK(gaim_gtkdialogs_about), NULL, 0, 0, NULL); + gaim_new_item_from_stock(menu, _("Quit"), GTK_STOCK_QUIT, G_CALLBACK(gaim_core_quit), NULL, 0, 0, NULL); #ifdef _WIN32 g_signal_connect(menu, "leave-notify-event", G_CALLBACK(docklet_menu_leave), NULL);