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

« back to all changes in this revision

Viewing changes to src/dlg-add-files.c

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2006-04-11 08:44:59 UTC
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: james.westby@ubuntu.com-20060411084459-9r22188ftese2ev2
Tags: upstream-2.14.1
ImportĀ upstreamĀ versionĀ 2.14.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
                return TRUE;
72
72
        }
73
73
 
 
74
        if (response == GTK_RESPONSE_HELP) {
 
75
                show_help_dialog (GTK_WINDOW (data->dialog), "file-roller-add-options");
 
76
                return TRUE;
 
77
        }
 
78
 
74
79
        current_folder = gtk_file_chooser_get_current_folder (file_sel);
75
80
 
76
81
        /* check folder permissions. */
179
184
                gtk_file_chooser_dialog_new (_("Add Files"),
180
185
                                             GTK_WINDOW (data->window->app),
181
186
                                             GTK_FILE_CHOOSER_ACTION_OPEN,
182
 
                                             GTK_STOCK_CANCEL, 
183
 
                                             GTK_RESPONSE_CANCEL,
184
 
                                             FR_STOCK_ADD, 
185
 
                                             GTK_RESPONSE_OK,
 
187
                                             GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
 
188
                                             FR_STOCK_ADD, GTK_RESPONSE_OK,
 
189
                                             GTK_STOCK_HELP, GTK_RESPONSE_HELP,
186
190
                                             NULL);
187
191
        gtk_file_chooser_set_select_multiple (GTK_FILE_CHOOSER (file_sel), TRUE);
188
192
        gtk_file_chooser_set_local_only (GTK_FILE_CHOOSER (file_sel), TRUE);