mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 17:33:25 +00:00
pdb, libgimp: change "filename" to "file" in gimp_pdb_dump()
This commit is contained in:
parent
6468fa06c7
commit
14af676b51
5 changed files with 21 additions and 32 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue