Mercurial > pidgin
changeset 9994:e651dbb88773
[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 <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Thu, 09 Sep 2004 03:56:47 +0000 |
parents | bdec08a8fc5b |
children | 792a7409f6b0 |
files | plugins/docklet/docklet.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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);