diff options
author | Pablo Barciela <[email protected]> | 2018-02-03 15:43:01 +0100 |
---|---|---|
committer | Pablo Barciela <[email protected]> | 2018-02-03 15:45:52 +0100 |
commit | d34c155f7cd35629a8a9356839f4471c188c054c (patch) | |
tree | abb06822dc3a1ff06d321d63b293c608e2513dc3 | |
parent | 6af0787b7cf06ae8da8d1c6f2f75b909c3ed3274 (diff) | |
download | mate-panel-d34c155f7cd35629a8a9356839f4471c188c054c.tar.bz2 mate-panel-d34c155f7cd35629a8a9356839f4471c188c054c.tar.xz |
panel-stock-icons.c: Fix warnings in ~/.xsession-errors
-rw-r--r-- | mate-panel/panel-stock-icons.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mate-panel/panel-stock-icons.c b/mate-panel/panel-stock-icons.c index c37a251e..96a47aa0 100644 --- a/mate-panel/panel-stock-icons.c +++ b/mate-panel/panel-stock-icons.c @@ -94,10 +94,10 @@ typedef struct { } PanelStockItem; static PanelStockItem stock_items [] = { - { PANEL_STOCK_EXECUTE, "system-run", N_("_Run") }, - { PANEL_STOCK_FORCE_QUIT, PANEL_STOCK_FORCE_QUIT, N_("_Force quit") }, - { PANEL_STOCK_CLEAR, "edit-clear", N_("C_lear") }, - { PANEL_STOCK_DONT_DELETE, "process-stop", N_("D_on't Delete") } + { PANEL_STOCK_EXECUTE, "gtk-execute", N_("_Run") }, + { PANEL_STOCK_FORCE_QUIT, PANEL_STOCK_FORCE_QUIT, N_("_Force quit") }, + { PANEL_STOCK_CLEAR, "gtk-clear", N_("C_lear") }, + { PANEL_STOCK_DONT_DELETE, "gtk-cancel", N_("D_on't Delete") } }; static void |