pdb, libgimp: change "filename" to "file" in gimp_pdb_dump()

This commit is contained in:
Michael Natterer 2019-09-11 22:37:40 +02:00
parent 6468fa06c7
commit 14af676b51
5 changed files with 21 additions and 32 deletions

View file

@ -374,17 +374,10 @@ gboolean
gimp_pdb_dump_to_file (GimpPDB *pdb,
GFile *file)
{
gchar *path;
gboolean success;
g_return_val_if_fail (GIMP_IS_PDB (pdb), FALSE);
g_return_val_if_fail (G_IS_FILE (pdb), FALSE);
path = g_file_get_path (file);
success = _gimp_pdb_dump (path);
g_free (path);
return success;
return _gimp_pdb_dump (file);
}
/**