34 lines
1.2 KiB
Diff
34 lines
1.2 KiB
Diff
|
|
--- file-roller_bak/ChangeLog 2004-06-19 22:19:21.000000000 +0530
|
|
+++ file-roller/ChangeLog 2004-06-22 13:59:01.773155328 +0530
|
|
@@ -1,0 +1,7 @@
|
|
+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
|
|
+
|
|
--- file-roller_bak/src/ui.h 2004-05-02 23:55:57.000000000 +0530
|
|
+++ file-roller/src/ui.h 2004-06-22 13:50:54.445240432 +0530
|
|
@@ -50,6 +50,11 @@
|
|
N_("Add"), NULL,
|
|
N_("Add files to the archive"),
|
|
G_CALLBACK (activate_action_add_files) },
|
|
+ { "DeleteFile_Toolbar", GTK_STOCK_REMOVE,
|
|
+ N_("Delete"), NULL,
|
|
+ N_("Delete file from the archive"),
|
|
+ G_CALLBACK (activate_action_delete) },
|
|
+
|
|
{ "AddFolder", FR_STOCK_ADD,
|
|
N_("Add a _Folder..."), NULL,
|
|
N_("Add a folder to the archive"),
|
|
@@ -299,6 +304,7 @@
|
|
" <separator name='sep01'/>"
|
|
" <toolitem action='AddFiles_Toolbar'/>"
|
|
" <toolitem action='Extract_Toolbar'/>"
|
|
+" <toolitem action='DeleteFile_Toolbar'/>"
|
|
" <toolitem action='ViewSelection_Toolbar'/>"
|
|
" <separator name='sep02'/>"
|
|
" <toolitem action='Stop'/>"
|