diff options
author | info-cppsp <[email protected]> | 2018-01-17 15:46:11 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-02-08 19:42:17 +0100 |
commit | 7e4869045b4327cbd8453e7a9b670680f8cfb87d (patch) | |
tree | 341cc701960676cd0ede20944b069aadd95b3beb /sensors-applet/sensors-applet.c | |
parent | f30402084780b89859dc2000afabe2bc3f73076c (diff) | |
download | mate-sensors-applet-7e4869045b4327cbd8453e7a9b670680f8cfb87d.tar.bz2 mate-sensors-applet-7e4869045b4327cbd8453e7a9b670680f8cfb87d.tar.xz |
fix GtkStock deprecations
Diffstat (limited to 'sensors-applet/sensors-applet.c')
-rw-r--r-- | sensors-applet/sensors-applet.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sensors-applet/sensors-applet.c b/sensors-applet/sensors-applet.c index 583c42c..b85d1bf 100644 --- a/sensors-applet/sensors-applet.c +++ b/sensors-applet/sensors-applet.c @@ -231,13 +231,13 @@ static gboolean mouse_leave_cb(GtkWidget *widget, GdkEventCrossing *event, gpoin } static const GtkActionEntry sensors_applet_menu_actions[] = { - { "Preferences", GTK_STOCK_PROPERTIES, N_("_Preferences"), + { "Preferences", "document-properties", N_("_Preferences"), NULL, NULL, G_CALLBACK(prefs_cb) }, - { "Help", GTK_STOCK_HELP, N_("_Help"), + { "Help", "help-browser", N_("_Help"), NULL, NULL, G_CALLBACK(help_cb) }, - { "About", GTK_STOCK_ABOUT, N_("_About"), + { "About", "help-about", N_("_About"), NULL, NULL, G_CALLBACK(about_cb) } }; |