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:
Michael Natterer 2005-08-03 09:38:01 +00:00 committed by Michael Natterer
parent 32d875d070
commit 4e9fd4f69f
2 changed files with 7 additions and 2 deletions

View File

@ -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

View File

@ -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: