diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/gtkutil.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gtkutil.c b/src/gtkutil.c index 5cc3f5834b8..cdc87044c81 100644 --- a/src/gtkutil.c +++ b/src/gtkutil.c | |||
| @@ -1350,7 +1350,7 @@ xg_get_file_with_chooser (f, prompt, default_filename, | |||
| 1350 | GTK_FILE_CHOOSER_ACTION_OPEN : | 1350 | GTK_FILE_CHOOSER_ACTION_OPEN : |
| 1351 | GTK_FILE_CHOOSER_ACTION_SAVE); | 1351 | GTK_FILE_CHOOSER_ACTION_SAVE); |
| 1352 | extern int x_gtk_show_hidden_files; | 1352 | extern int x_gtk_show_hidden_files; |
| 1353 | extern int x_gtk_show_chooser_help_text; | 1353 | extern int x_gtk_file_dialog_help_text; |
| 1354 | 1354 | ||
| 1355 | 1355 | ||
| 1356 | if (only_dir_p) | 1356 | if (only_dir_p) |
| @@ -1379,7 +1379,7 @@ xg_get_file_with_chooser (f, prompt, default_filename, | |||
| 1379 | g_signal_connect (G_OBJECT (filewin), "notify", | 1379 | g_signal_connect (G_OBJECT (filewin), "notify", |
| 1380 | G_CALLBACK (xg_toggle_notify_cb), wtoggle); | 1380 | G_CALLBACK (xg_toggle_notify_cb), wtoggle); |
| 1381 | 1381 | ||
| 1382 | if (x_gtk_show_chooser_help_text) | 1382 | if (x_gtk_file_dialog_help_text) |
| 1383 | { | 1383 | { |
| 1384 | message[0] = '\0'; | 1384 | message[0] = '\0'; |
| 1385 | if (action != GTK_FILE_CHOOSER_ACTION_SAVE) | 1385 | if (action != GTK_FILE_CHOOSER_ACTION_SAVE) |
| @@ -1393,7 +1393,7 @@ xg_get_file_with_chooser (f, prompt, default_filename, | |||
| 1393 | } | 1393 | } |
| 1394 | 1394 | ||
| 1395 | gtk_box_pack_start (GTK_BOX (wbox), wtoggle, FALSE, FALSE, 0); | 1395 | gtk_box_pack_start (GTK_BOX (wbox), wtoggle, FALSE, FALSE, 0); |
| 1396 | if (x_gtk_show_chooser_help_text) | 1396 | if (x_gtk_file_dialog_help_text) |
| 1397 | gtk_box_pack_start (GTK_BOX (wbox), wmessage, FALSE, FALSE, 0); | 1397 | gtk_box_pack_start (GTK_BOX (wbox), wmessage, FALSE, FALSE, 0); |
| 1398 | gtk_file_chooser_set_extra_widget (GTK_FILE_CHOOSER (filewin), wbox); | 1398 | gtk_file_chooser_set_extra_widget (GTK_FILE_CHOOSER (filewin), wbox); |
| 1399 | 1399 | ||