[gedit/wip/browser-menu] Remove useless nulls
- From: Ignacio Casal Quinteiro <icq src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gedit/wip/browser-menu] Remove useless nulls
- Date: Thu, 18 Apr 2013 16:18:32 +0000 (UTC)
commit ccb1e17a96dd34f08e241f949e7becc694372f6b
Author: Ignacio Casal Quinteiro <icq gnome org>
Date: Thu Apr 18 18:18:19 2013 +0200
Remove useless nulls
plugins/filebrowser/gedit-file-browser-widget.c | 28 ++++++++++++-------------
1 file changed, 14 insertions(+), 14 deletions(-)
---
diff --git a/plugins/filebrowser/gedit-file-browser-widget.c b/plugins/filebrowser/gedit-file-browser-widget.c
index 587a17a..0c6862e 100644
--- a/plugins/filebrowser/gedit-file-browser-widget.c
+++ b/plugins/filebrowser/gedit-file-browser-widget.c
@@ -902,22 +902,22 @@ on_end_loading (GeditFileBrowserStore *model,
}
static GActionEntry browser_entries[] = {
- { "open", open_activated, NULL, NULL, NULL },
- //{ "set_active_root", set_active_root_activated, NULL, NULL, NULL },
- { "new_folder", new_folder_activated, NULL, NULL, NULL },
- { "new_file", new_file_activated, NULL, NULL, NULL },
- { "rename", rename_activated, NULL, NULL, NULL },
- { "move_to_trash", move_to_trash_activated, NULL, NULL, NULL },
- { "delete", delete_activated, NULL, NULL, NULL },
- { "refresh_view", refresh_view_activated, NULL, NULL, NULL },
- { "view_folder", view_folder_activated, NULL, NULL, NULL },
- //{ "open_in_terminal", open_in_terminal_activated, NULL, NULL, NULL },
+ { "open", open_activated },
+ //{ "set_active_root", set_active_root_activated },
+ { "new_folder", new_folder_activated },
+ { "new_file", new_file_activated },
+ { "rename", rename_activated },
+ { "move_to_trash", move_to_trash_activated },
+ { "delete", delete_activated },
+ { "refresh_view", refresh_view_activated },
+ { "view_folder", view_folder_activated },
+ //{ "open_in_terminal", open_in_terminal_activated },
{ "show_hidden", show_hidden_activated, NULL, "true", NULL },
{ "show_binary", show_binary_activated, NULL, "true", NULL },
- { "bookmark_open", bookmark_open_activated, NULL, NULL, NULL },
- { "previous_location", previous_location_activated, NULL, NULL, NULL },
- { "next_location", next_location_activated, NULL, NULL, NULL },
- { "up", up_activated, NULL, NULL, NULL }
+ { "bookmark_open", bookmark_open_activated },
+ { "previous_location", previous_location_activated },
+ { "next_location", next_location_activated },
+ { "up", up_activated }
};
static void
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]