diff options
author | Pablo Barciela <[email protected]> | 2018-02-03 18:03:50 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-02-09 16:17:56 +0100 |
commit | 607d5228f3a280dd8acfcdaba7da7c83c496de32 (patch) | |
tree | 26f39957ef1935326935565892b98e4640ee9603 /drivemount | |
parent | 94618cb836c3213e28c3d75fc6bc458bf6cd59b3 (diff) | |
download | mate-applets-607d5228f3a280dd8acfcdaba7da7c83c496de32.tar.bz2 mate-applets-607d5228f3a280dd8acfcdaba7da7c83c496de32.tar.xz |
avoid deprecated GtkStock
Diffstat (limited to 'drivemount')
-rw-r--r-- | drivemount/drivemount.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivemount/drivemount.c b/drivemount/drivemount.c index 433aa6cc..5f525667 100644 --- a/drivemount/drivemount.c +++ b/drivemount/drivemount.c @@ -156,10 +156,10 @@ display_help (GtkAction *action, } static const GtkActionEntry applet_menu_actions[] = { - { "Help", GTK_STOCK_HELP, N_("_Help"), + { "Help", "help-browser", N_("_Help"), NULL, NULL, G_CALLBACK (display_help) }, - { "About", GTK_STOCK_ABOUT, N_("_About"), + { "About", "help-about", N_("_About"), NULL, NULL, G_CALLBACK (display_about_dialog) } }; |