diff options
author | rbuj <[email protected]> | 2021-03-17 08:00:33 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2022-07-21 19:33:51 +0200 |
commit | 5518f89ddf34fdbab47aba9652d208678c70de49 (patch) | |
tree | 8d6c5bfd6716eb364ad48198c9d9f423754aa8ce /src/file-manager | |
parent | f4cb0730fd25fee4d273ea6e5563981e42ead617 (diff) | |
download | caja-5518f89ddf34fdbab47aba9652d208678c70de49.tar.bz2 caja-5518f89ddf34fdbab47aba9652d208678c70de49.tar.xz |
warning: missing initializer for a field of ‘GtkActionEntry’
Diffstat (limited to 'src/file-manager')
-rw-r--r-- | src/file-manager/fm-directory-view.c | 29 | ||||
-rw-r--r-- | src/file-manager/fm-icon-view.c | 24 |
2 files changed, 27 insertions, 26 deletions
diff --git a/src/file-manager/fm-directory-view.c b/src/file-manager/fm-directory-view.c index 67f10bbb..45234c43 100644 --- a/src/file-manager/fm-directory-view.c +++ b/src/file-manager/fm-directory-view.c @@ -7386,9 +7386,10 @@ fm_directory_view_init_show_backup_files (FMDirectoryView *view) } static const GtkActionEntry directory_view_entries[] = { - /* name, icon name, label */ { "New Documents", "document-new", N_("Create _Document") }, + /* name, icon name, label */ { "New Documents", "document-new", N_("Create _Document"), + NULL, NULL, NULL }, /* name, icon name, label */ { "Open With", NULL, N_("Open Wit_h"), - NULL, N_("Choose a program with which to open the selected item") }, + NULL, N_("Choose a program with which to open the selected item"), NULL }, /* name, icon name */ { "Properties", "document-properties", /* label, accelerator */ N_("_Properties"), "<alt>Return", /* tooltip */ N_("View or modify the properties of each selected item"), @@ -7401,7 +7402,7 @@ static const GtkActionEntry directory_view_entries[] = { /* label, accelerator */ N_("Create _Folder"), "<control><shift>N", /* tooltip */ N_("Create a new empty folder inside this folder"), G_CALLBACK (action_new_folder_callback) }, - /* name, icon name, label */ { "No Templates", NULL, N_("No templates installed") }, + /* name, icon name, label */ { "No Templates", NULL, N_("No templates installed"), NULL, NULL, NULL }, /* name, icon name */ { "New Empty File", NULL, /* Translators: this is used to indicate that a file doesn't contain anything */ /* label, accelerator */ N_("_Empty File"), NULL, @@ -7465,8 +7466,10 @@ static const GtkActionEntry directory_view_entries[] = { /* label, accelerator */ N_("_Paste Into Folder"), "", /* tooltip */ N_("Move or copy files previously selected by a Cut or Copy command into the selected folder"), G_CALLBACK (action_paste_files_into_callback) }, - /* name, icon name, label */ { "CopyToMenu", NULL, N_("Cop_y to") }, - /* name, icon name, label */ { "MoveToMenu", NULL, N_("M_ove to") }, + /* name, icon name, label */ { "CopyToMenu", NULL, N_("Cop_y to"), + NULL, NULL, NULL }, + /* name, icon name, label */ { "MoveToMenu", NULL, N_("M_ove to"), + NULL, NULL, NULL }, /* name, icon name */ { "Select All", NULL, /* label, accelerator */ N_("Select _All"), "<control>A", /* tooltip */ N_("Select all items in this window"), @@ -7507,14 +7510,14 @@ static const GtkActionEntry directory_view_entries[] = { /* label, accelerator */ N_("_Restore"), NULL, NULL, G_CALLBACK (action_restore_from_trash_callback) }, - /* name, icon name */ { FM_ACTION_UNDO, "edit-undo", - /* label, accelerator */ N_("_Undo"), "<control>Z", - /* tooltip */ N_("Undo the last action"), - G_CALLBACK (action_undo_callback) }, - /* name, icon name */ { FM_ACTION_REDO, "edit-redo", - /* label, accelerator */ N_("_Redo"), "<control>Y", - /* tooltip */ N_("Redo the last undone action"), - G_CALLBACK (action_redo_callback) }, + /* name, icon name */ { FM_ACTION_UNDO, "edit-undo", + /* label, accelerator */ N_("_Undo"), "<control>Z", + /* tooltip */ N_("Undo the last action"), + G_CALLBACK (action_undo_callback) }, + /* name, icon name */ { FM_ACTION_REDO, "edit-redo", + /* label, accelerator */ N_("_Redo"), "<control>Y", + /* tooltip */ N_("Redo the last undone action"), + G_CALLBACK (action_redo_callback) }, /* * multiview-TODO: decide whether "Reset to Defaults" should 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[] = |