~ubuntu-branches/ubuntu/natty/pygoocanvas/natty

« back to all changes in this revision

Viewing changes to goocanvasmodule.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2006-09-10 20:17:39 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060910201739-0bx7brrgtglz1lxa
Tags: 0.4.1-1
* New upstream version:
  - Much better support for subclassing ItemSimple / ItemSimpleView 
  - Don't crash an functions returning NULL CairoMatrix 
  - CairoPattern property convertion bug fixed

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
    if (!(PyObject_IsInstance(obj, (PyObject *) &PycairoPattern_Type)))
44
44
        return -1;
45
45
 
46
 
    g_value_set_boxed(value, &((PycairoPattern*)(obj))->pattern);
 
46
    g_value_set_boxed(value, ((PycairoPattern*)(obj))->pattern);
47
47
    return 0;
48
48
}
49
49