~ubuntu-branches/ubuntu/hardy/file-roller/hardy-updates

« back to all changes in this revision

Viewing changes to src/fr-command-arj.c

  • Committer: Bazaar Package Importer
  • Author(s): Baptiste Mille-Mathias
  • Date: 2007-06-19 18:59:05 UTC
  • mfrom: (1.2.30 upstream)
  • Revision ID: james.westby@ubuntu.com-20070619185905-kd35yjkfr0gn3tfa
Tags: 2.19.3-0ubuntu1
* New upstream release:
  - Added support for Drag&Drop among file-roller windows.
  - Added a folders pane.  
  - Fixed daylight saving time calculation.
  - Save and restore the filename column width.
  - Can not open a file whose name is in non-ascii encoding.

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
{
50
50
        struct tm   tm = {0, };
51
51
        char      **fields;
 
52
        
 
53
        tm.tm_isdst = -1;
52
54
 
53
55
        /* date */
54
56
 
147
149
                if (*fdata->name == 0)
148
150
                        file_data_free (fdata);
149
151
                else
150
 
                        comm->file_list = g_list_prepend (comm->file_list, fdata);
 
152
                        fr_command_add_file (comm, fdata);
151
153
                arj_comm->fdata = NULL;
152
154
        }
153
155