diff options
author | rbuj <[email protected]> | 2021-03-17 08:00:33 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-04-01 17:07:03 +0200 |
commit | 0afa9857c7eb2d6dcfb3b1d90f239f8ecd5ec293 (patch) | |
tree | 6d171144361e7cbb0772e9294dfc1cbcd5028e1c /src/file-manager/fm-icon-view.c | |
parent | 4b479a67349751c1251caa9adb088d72e69695f3 (diff) | |
download | caja-0afa9857c7eb2d6dcfb3b1d90f239f8ecd5ec293.tar.bz2 caja-0afa9857c7eb2d6dcfb3b1d90f239f8ecd5ec293.tar.xz |
warning: missing initializer for a field of ‘GtkActionEntry’
Diffstat (limited to 'src/file-manager/fm-icon-view.c')
-rw-r--r-- | src/file-manager/fm-icon-view.c | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/src/file-manager/fm-icon-view.c b/src/file-manager/fm-icon-view.c index 828ac59f..6d1036ff 100644 --- a/src/file-manager/fm-icon-view.c +++ b/src/file-manager/fm-icon-view.c @@ -1706,22 +1706,20 @@ fm_icon_view_start_renaming_file (FMDirectoryView *view, static const GtkActionEntry icon_view_entries[] = { - /* name, stock id, label */ { "Arrange Items", NULL, N_("Arran_ge Items") }, + /* name, stock id, label */ { "Arrange Items", NULL, N_("Arran_ge Items"), + NULL, NULL, NULL }, /* name, stock id */ { "Stretch", NULL, - /* label, accelerator */ N_("Resize Icon..."), NULL, - /* tooltip */ N_("Make the selected icon resizable"), - G_CALLBACK (action_stretch_callback) - }, + /* label, accelerator */ N_("Resize Icon..."), NULL, + /* tooltip */ N_("Make the selected icon resizable"), + G_CALLBACK (action_stretch_callback) }, /* name, stock id */ { "Unstretch", NULL, - /* label, accelerator */ N_("Restore Icons' Original Si_zes"), NULL, - /* tooltip */ N_("Restore each selected icon to its original size"), - G_CALLBACK (action_unstretch_callback) - }, + /* label, accelerator */ N_("Restore Icons' Original Si_zes"), NULL, + /* tooltip */ N_("Restore each selected icon to its original size"), + G_CALLBACK (action_unstretch_callback) }, /* name, stock id */ { "Clean Up", NULL, - /* label, accelerator */ N_("_Organize by Name"), NULL, - /* tooltip */ N_("Reposition icons to better fit in the window and avoid overlapping"), - G_CALLBACK (action_clean_up_callback) - }, + /* label, accelerator */ N_("_Organize by Name"), NULL, + /* tooltip */ N_("Reposition icons to better fit in the window and avoid overlapping"), + G_CALLBACK (action_clean_up_callback) }, }; static const GtkToggleActionEntry icon_view_toggle_entries[] = |