mirror of https://github.com/GNOME/gimp.git
canonicalize hardcoded procedure names.
2005-08-03 Michael Natterer <mitch@gimp.org> * app/widgets/gimpfiledialog.c (gimp_file_dialog_new): canonicalize hardcoded procedure names.
This commit is contained in:
parent
32d875d070
commit
4e9fd4f69f
|
@ -1,3 +1,8 @@
|
|||
2005-08-03 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/widgets/gimpfiledialog.c (gimp_file_dialog_new):
|
||||
canonicalize hardcoded procedure names.
|
||||
|
||||
2005-08-03 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/dialogs/module-dialog.c
|
||||
|
|
|
@ -325,7 +325,7 @@ gimp_file_dialog_new (Gimp *gimp,
|
|||
automatic_help_id = GIMP_HELP_FILE_OPEN_BY_EXTENSION;
|
||||
|
||||
/* FIXME */
|
||||
local_only = (procedural_db_lookup (gimp, "file_uri_load") == NULL);
|
||||
local_only = (procedural_db_lookup (gimp, "file-uri-load") == NULL);
|
||||
break;
|
||||
|
||||
case GTK_FILE_CHOOSER_ACTION_SAVE:
|
||||
|
@ -334,7 +334,7 @@ gimp_file_dialog_new (Gimp *gimp,
|
|||
automatic_help_id = GIMP_HELP_FILE_SAVE_BY_EXTENSION;
|
||||
|
||||
/* FIXME */
|
||||
local_only = (procedural_db_lookup (gimp, "file_uri_save") == NULL);
|
||||
local_only = (procedural_db_lookup (gimp, "file-uri-save") == NULL);
|
||||
break;
|
||||
|
||||
default:
|
||||
|
|
Loading…
Reference in New Issue