2006-12-19 22:57:05 +01:00
|
|
|
|
2007-08-03 00:13:19 +02:00
|
|
|
Index: file-roller-2.19.4/ChangeLog
|
2007-04-03 21:22:32 +02:00
|
|
|
===================================================================
|
2007-08-03 00:13:19 +02:00
|
|
|
--- file-roller-2.19.4.orig/ChangeLog
|
|
|
|
+++ file-roller-2.19.4/ChangeLog
|
|
|
|
@@ -809,6 +809,13 @@
|
|
|
|
* configure.in: changed version to 2.19.0
|
|
|
|
|
2007-04-03 21:22:32 +02:00
|
|
|
2007-03-12 Paolo Bacchilega <paobac@cvs.gnome.org>
|
2006-12-19 22:57:05 +01:00
|
|
|
+2004-06-16 Subrahmanyam Madduri <smadduri@novell.com>
|
|
|
|
+
|
|
|
|
+ * src/ui.h : (action_entries): Added any entry for the "Delete File"
|
|
|
|
+ in the toolbar. And connected the clckevent of the button to
|
|
|
|
+ activate_action_delete in actions.c
|
|
|
|
+ Fixes bug #144800
|
|
|
|
+
|
2007-04-03 21:22:32 +02:00
|
|
|
|
|
|
|
[ File Roller 2.18.0 released ]
|
|
|
|
|
2007-08-03 00:13:19 +02:00
|
|
|
Index: file-roller-2.19.4/src/ui.h
|
2007-04-03 21:22:32 +02:00
|
|
|
===================================================================
|
2007-08-03 00:13:19 +02:00
|
|
|
--- file-roller-2.19.4.orig/src/ui.h
|
|
|
|
+++ file-roller-2.19.4/src/ui.h
|
|
|
|
@@ -108,7 +108,10 @@ static GtkActionEntry action_entries[] =
|
2007-04-03 21:22:32 +02:00
|
|
|
NULL, NULL,
|
|
|
|
N_("Delete the selection from the archive"),
|
2007-08-03 00:13:19 +02:00
|
|
|
G_CALLBACK (activate_action_delete_folder_from_sidebar) },
|
|
|
|
-
|
2007-04-03 21:22:32 +02:00
|
|
|
+ { "DeleteFile_Toolbar", GTK_STOCK_REMOVE,
|
2007-08-03 00:13:19 +02:00
|
|
|
+ N_("Delete"), NULL,
|
|
|
|
+ N_("Delete file from the archive"),
|
|
|
|
+ G_CALLBACK (activate_action_delete) },
|
2007-04-03 21:22:32 +02:00
|
|
|
{ "DeselectAll", NULL,
|
|
|
|
N_("Dese_lect All"), NULL,
|
|
|
|
N_("Deselect all files"),
|
2007-08-03 00:13:19 +02:00
|
|
|
@@ -313,6 +316,7 @@ static const gchar *ui_info =
|
2007-04-03 21:22:32 +02:00
|
|
|
" <toolbar name='ToolBar'>"
|
|
|
|
" <toolitem action='New'/>"
|
2006-12-19 22:57:05 +01:00
|
|
|
" <toolitem action='Extract_Toolbar'/>"
|
|
|
|
+" <toolitem action='DeleteFile_Toolbar'/>"
|
2007-04-03 21:22:32 +02:00
|
|
|
" <separator/>"
|
|
|
|
" <toolitem action='AddFiles_Toolbar'/>"
|
|
|
|
" <toolitem action='AddFolder_Toolbar'/>"
|