plug-ins/pygimp/gimpmodule.c use pygimp_init_pygobject here too. Report

2006-10-20  Manish Singh  <yosh@gimp.org>

        * plug-ins/pygimp/gimpmodule.c
        * plug-ins/pygimp/procbrowser.c: use pygimp_init_pygobject here too.
        Report and patch from Eric Lamarque (fixes bug #363516).
This commit is contained in:
Manish Singh 2006-10-20 08:02:24 +00:00 committed by Manish Singh
parent 9c4e43910a
commit 7f93f53237
3 changed files with 12 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2006-10-20 Manish Singh <yosh@gimp.org>
* plug-ins/pygimp/gimpmodule.c
* plug-ins/pygimp/procbrowser.c: use pygimp_init_pygobject here too.
Report and patch from Eric Lamarque (fixes bug #363516).
2006-10-19 Michael Natterer <mitch@gimp.org>
* app/tools/gimptransformtool.c

View File

@ -34,6 +34,8 @@
#include <pygobject.h>
#include "pygimp-util.h"
#include "pygimp-intl.h"
@ -1645,7 +1647,7 @@ initgimp(void)
if (PyType_Ready(&PyGimpParasite_Type) < 0)
return;
init_pygobject();
pygimp_init_pygobject();
init_pygimpcolor();
/* initialize i18n support */

View File

@ -33,6 +33,8 @@
#include "pygimp-api.h"
#include "pygimp-util.h"
#include "pygimp-intl.h"
typedef struct
@ -217,7 +219,7 @@ initgimpprocbrowser(void)
{
PyObject *m;
init_pygobject();
pygimp_init_pygobject();
init_pygtk();
init_pygimp();