~swem/totem/assignment

« back to all changes in this revision

Viewing changes to bindings/python/totem.override

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2010-01-27 09:40:18 UTC
  • mfrom: (1.4.2 upstream) (5.1.13 sid)
  • Revision ID: james.westby@ubuntu.com-20100127094018-q6rzt7va0y8ketwt
Tags: 2.29.4-1
* New upstream development release:
  + debian/patches/90_autotools.patch:
    - Refreshed for the new version.
  + debian/control.in:
    - Update build dependencies and dependencies.
    - Drop tracker plugin, it needs tracker 0.7.
  + debian/totem-mozilla.links:
    - Drop the complex plugin, it doesn't exist anymore.

Show diffs side-by-side

added added

removed removed

Lines of Context:
108
108
    
109
109
        builder = totem_plugin_load_interface (TOTEM_PLUGIN (self->obj), name, fatal, parent, user_data);
110
110
    
111
 
        return pygobject_new((GObject *)builder);
 
111
        return pygobject_new ((GObject *)builder);
 
112
}
 
113
%%
 
114
override totem_get_version noargs
 
115
static PyObject *
 
116
_wrap_totem_get_version (PyGObject *self)
 
117
{
 
118
        PyObject *py_string;
 
119
        char *version;
 
120
 
 
121
        version = totem_get_version ();
 
122
        py_string = PyString_FromString (version);
 
123
        g_free (version);
 
124
 
 
125
        return py_string;
112
126
}