summaryrefslogtreecommitdiff
path: root/applets/notification_area
diff options
context:
space:
mode:
authorPablo Barciela <[email protected]>2018-01-23 20:55:01 +0100
committerlukefromdc <[email protected]>2018-01-25 20:28:18 -0500
commit1f72d441289df987dd7fbb528089f71e719e3c46 (patch)
treeb5635415641d0d865470d7da3d7dd602d8ba28c7 /applets/notification_area
parent7f99492c269f541c81e4f36742ecc3f0b4ebac04 (diff)
downloadmate-panel-1f72d441289df987dd7fbb528089f71e719e3c46.tar.bz2
mate-panel-1f72d441289df987dd7fbb528089f71e719e3c46.tar.xz
avoid deprecated GtkStock
Diffstat (limited to 'applets/notification_area')
-rw-r--r--applets/notification_area/main.c4
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) }
};