~ubuntu-branches/ubuntu/quantal/libpeas/quantal

« back to all changes in this revision

Viewing changes to libpeas/peas-plugin-loader.c

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2011-09-22 08:38:23 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: package-import@ubuntu.com-20110922083823-hm0gu89o2utvrxa9
Tags: 1.1.4-0ubuntu1
* New upstream release:
  - Fix to work with PyGObject 3.
  - Do not expose the peas_extension_set_call* API to GObject-Introspection.
  - Disable log hooks used by PyGObject and Seed.
  - Doc updates.
  - Misc improvement and fixes.
  - Translation updates.
* debian/control.in: Bump pygobject build dep as per configure.ac.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
}
39
39
 
40
40
gboolean
 
41
peas_plugin_loader_initialize (PeasPluginLoader *loader)
 
42
{
 
43
  PeasPluginLoaderClass *klass;
 
44
 
 
45
  g_return_val_if_fail (PEAS_IS_PLUGIN_LOADER (loader), FALSE);
 
46
 
 
47
  klass = PEAS_PLUGIN_LOADER_GET_CLASS (loader);
 
48
 
 
49
  if (klass->initialize != NULL)
 
50
    return klass->initialize (loader);
 
51
 
 
52
  return TRUE;
 
53
}
 
54
 
 
55
gboolean
41
56
peas_plugin_loader_load (PeasPluginLoader *loader,
42
57
                         PeasPluginInfo   *info)
43
58
{