diff options
author | Pablo Barciela <[email protected]> | 2018-01-23 20:55:01 +0100 |
---|---|---|
committer | lukefromdc <[email protected]> | 2018-01-25 20:28:18 -0500 |
commit | 1f72d441289df987dd7fbb528089f71e719e3c46 (patch) | |
tree | b5635415641d0d865470d7da3d7dd602d8ba28c7 /applets/notification_area/main.c | |
parent | 7f99492c269f541c81e4f36742ecc3f0b4ebac04 (diff) | |
download | mate-panel-1f72d441289df987dd7fbb528089f71e719e3c46.tar.bz2 mate-panel-1f72d441289df987dd7fbb528089f71e719e3c46.tar.xz |
avoid deprecated GtkStock
Diffstat (limited to 'applets/notification_area/main.c')
-rw-r--r-- | applets/notification_area/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applets/notification_area/main.c b/applets/notification_area/main.c index 8317ff06..259573c4 100644 --- a/applets/notification_area/main.c +++ b/applets/notification_area/main.c @@ -182,10 +182,10 @@ static void about_cb(GtkAction* action, NaTrayApplet* applet) } static const GtkActionEntry menu_actions [] = { - { "SystemTrayHelp", GTK_STOCK_HELP, N_("_Help"), + { "SystemTrayHelp", "help-browser", N_("_Help"), NULL, NULL, G_CALLBACK (help_cb) }, - { "SystemTrayAbout", GTK_STOCK_ABOUT, N_("_About"), + { "SystemTrayAbout", "help-about", N_("_About"), NULL, NULL, G_CALLBACK (about_cb) } }; |