mirror of https://github.com/GNOME/gimp.git
libgimp: remove gimp_pdb_dump() and gimp_pdb_proc_exists()
This commit is contained in:
parent
ae824dcab5
commit
dbeed89858
|
@ -631,7 +631,6 @@ EXPORTS
|
|||
gimp_patterns_popup
|
||||
gimp_patterns_refresh
|
||||
gimp_patterns_set_popup
|
||||
gimp_pdb_dump
|
||||
gimp_pdb_dump_to_file
|
||||
gimp_pdb_get_data
|
||||
gimp_pdb_get_data_size
|
||||
|
@ -640,7 +639,6 @@ EXPORTS
|
|||
gimp_pdb_get_type
|
||||
gimp_pdb_lookup_procedure
|
||||
gimp_pdb_proc_argument
|
||||
gimp_pdb_proc_exists
|
||||
gimp_pdb_proc_info
|
||||
gimp_pdb_proc_return_value
|
||||
gimp_pdb_procedure_exists
|
||||
|
|
|
@ -1514,26 +1514,6 @@ gimp_pdb_temp_name (void)
|
|||
return _gimp_pdb_temp_name ();
|
||||
}
|
||||
|
||||
/**
|
||||
* gimp_pdb_dump:
|
||||
* @filename: The dump filename.
|
||||
*
|
||||
* Dumps the current contents of the procedural database
|
||||
*
|
||||
* This procedure dumps the contents of the procedural database to the
|
||||
* specified file. The file will contain all of the information
|
||||
* provided for each registered procedure.
|
||||
*
|
||||
* Returns: TRUE on success.
|
||||
**/
|
||||
gboolean
|
||||
gimp_pdb_dump (const gchar *filename)
|
||||
{
|
||||
ASSERT_NO_PLUG_IN_EXISTS (G_STRFUNC);
|
||||
|
||||
return _gimp_pdb_dump (filename);
|
||||
}
|
||||
|
||||
/**
|
||||
* gimp_pdb_query:
|
||||
* @name: The regex for procedure name.
|
||||
|
@ -1584,27 +1564,6 @@ gimp_pdb_query (const gchar *name,
|
|||
num_matches, procedure_names);
|
||||
}
|
||||
|
||||
/**
|
||||
* gimp_pdb_proc_exists:
|
||||
* @procedure_name: The procedure name.
|
||||
*
|
||||
* Checks if the specified procedure exists in the procedural database
|
||||
*
|
||||
* This procedure checks if the specified procedure is registered in
|
||||
* the procedural database.
|
||||
*
|
||||
* Returns: Whether a procedure of that name is registered.
|
||||
*
|
||||
* Since: 2.6
|
||||
**/
|
||||
gboolean
|
||||
gimp_pdb_proc_exists (const gchar *procedure_name)
|
||||
{
|
||||
ASSERT_NO_PLUG_IN_EXISTS (G_STRFUNC);
|
||||
|
||||
return _gimp_pdb_proc_exists (procedure_name);
|
||||
}
|
||||
|
||||
/**
|
||||
* gimp_pdb_proc_info:
|
||||
* @procedure_name: The procedure name.
|
||||
|
|
|
@ -378,7 +378,6 @@ gboolean gimp_register_thumbnail_loader (const gchar *load_proc,
|
|||
*/
|
||||
|
||||
gchar * gimp_pdb_temp_name (void);
|
||||
gboolean gimp_pdb_dump (const gchar *filename);
|
||||
gboolean gimp_pdb_query (const gchar *name,
|
||||
const gchar *blurb,
|
||||
const gchar *help,
|
||||
|
@ -388,7 +387,6 @@ gboolean gimp_pdb_query (const gchar *name,
|
|||
const gchar *proc_type,
|
||||
gint *num_matches,
|
||||
gchar ***procedure_names);
|
||||
gboolean gimp_pdb_proc_exists (const gchar *procedure_name);
|
||||
gboolean gimp_pdb_proc_info (const gchar *procedure_name,
|
||||
gchar **blurb,
|
||||
gchar **help,
|
||||
|
|
Loading…
Reference in New Issue