libgimp: gimp_pdb_temp_name() can also go, bye...

This commit is contained in:
Michael Natterer 2019-08-14 19:43:54 +02:00
parent 6801857b9c
commit 996564116d
3 changed files with 0 additions and 25 deletions

View File

@ -637,7 +637,6 @@ EXPORTS
gimp_pdb_run_procedure_array
gimp_pdb_run_procedure_valist
gimp_pdb_set_data
gimp_pdb_temp_name
gimp_pdb_temp_procedure_name
gimp_pencil
gimp_plug_in_add_menu_branch

View File

@ -703,25 +703,6 @@ gimp_register_thumbnail_loader (const gchar *load_proc,
return _gimp_register_thumbnail_loader (load_proc, thumb_proc);
}
/**
* gimp_pdb_temp_name:
*
* Generates a unique temporary PDB name.
*
* This procedure generates a temporary PDB entry name that is
* guaranteed to be unique.
*
* Returns: (transfer full): A unique temporary name for a temporary PDB entry.
* The returned value must be freed with g_free().
**/
gchar *
gimp_pdb_temp_name (void)
{
ASSERT_NO_PLUG_IN_EXISTS (G_STRFUNC);
return _gimp_pdb_temp_name ();
}
/* private functions */

View File

@ -294,11 +294,6 @@ gboolean gimp_register_file_handler_uri (const gchar *procedure_name);
gboolean gimp_register_thumbnail_loader (const gchar *load_proc,
const gchar *thumb_proc);
/* pdb stuff that should now be done using GimpPDB
*/
gchar * gimp_pdb_temp_name (void);
#endif /* GIMP_DISABLE_COMPAT_CRUFT */