summaryrefslogtreecommitdiff
path: root/src/file-manager/fm-icon-view.c
diff options
context:
space:
mode:
authorrbuj <[email protected]>2021-03-17 08:00:33 +0100
committerraveit65 <[email protected]>2022-07-21 19:33:51 +0200
commit5518f89ddf34fdbab47aba9652d208678c70de49 (patch)
tree8d6c5bfd6716eb364ad48198c9d9f423754aa8ce /src/file-manager/fm-icon-view.c
parentf4cb0730fd25fee4d273ea6e5563981e42ead617 (diff)
downloadcaja-5518f89ddf34fdbab47aba9652d208678c70de49.tar.bz2
caja-5518f89ddf34fdbab47aba9652d208678c70de49.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.c24
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 1c600fa9..c553b98c 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[] =