make libgimpprocbrowser a libtooled library.
2004-11-17 Manish Singh <yosh@gimp.org> * plug-ins/dbbrowser/Makefile.am: make libgimpprocbrowser a libtooled library. * plug-ins/dbbrowser/gimpprocbrowser.[ch]: add a user_data pointer for GimpProcBrowserApplyCallback. * plug-ins/dbbrowser/gimpprocbrowser.c: only convert the name to scheme style if scheme_names in the proc info pane too. * plug-ins/dbbrowser/procedure-browser.c * plug-ins/script-fu/script-fu-console.c: pass NULL as user_data. * plug-ins/script-fu/Makefile.am: reference libgimpprocbrowser.la. * plug-ins/pygimp/Makefile.am * plug-ins/pygimp/procbrowser.c: new module, which wraps libgimprocbrowser. * plug-ins/pygimp/gimpmodule.c * plug-ins/pygimp/pygimp.h * plug-ins/pygimp/pygimp-pdb.c: export GimpPDBFunction so other modules can use it. * plug-ins/pygimp/plug-ins/pdbbrowse.py * plug-ins/pygimp/plug-ins/gimpcons.py: use gimpprocbrowser.
This commit is contained in:
committed by
Manish Singh
parent
235bb4082a
commit
b91a3dd27e
@ -306,7 +306,8 @@ apply_callback (const gchar *proc_name,
|
||||
gint n_params,
|
||||
gint n_return_vals,
|
||||
const GimpParamDef *params,
|
||||
const GimpParamDef *return_vals)
|
||||
const GimpParamDef *return_vals,
|
||||
gpointer user_data)
|
||||
{
|
||||
gint i;
|
||||
GString *text;
|
||||
@ -334,7 +335,7 @@ script_fu_browse_callback (GtkWidget *widget,
|
||||
gpointer data)
|
||||
{
|
||||
gtk_quit_add_destroy (1, (GtkObject *)
|
||||
gimp_proc_browser_dialog_new (TRUE, apply_callback));
|
||||
gimp_proc_browser_dialog_new (TRUE, apply_callback, NULL));
|
||||
}
|
||||
|
||||
static gboolean
|
||||
|
||||
Reference in New Issue
Block a user