~ubuntu-branches/ubuntu/raring/gjs/raring

« back to all changes in this revision

Viewing changes to modules/cairo-surface-pattern.c

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2012-03-13 19:15:08 UTC
  • mfrom: (1.6.7)
  • Revision ID: package-import@ubuntu.com-20120313191508-k44let6s97mb45uv
Tags: 1.31.20-0ubuntu1
* New upstream release.
* Add gir package
* debian/control.in: Require minimum glib 2.31
* Drop all patches since they've been applied upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
173
173
}
174
174
 
175
175
static JSFunctionSpec gjs_cairo_surface_pattern_proto_funcs[] = {
176
 
    { "setExtend", (JSNative)setExtend_func, 0, JSFUN_FAST_NATIVE },
177
 
    { "getExtend", (JSNative)getExtend_func, 0, JSFUN_FAST_NATIVE },
178
 
    { "setFilter", (JSNative)setFilter_func, 0, JSFUN_FAST_NATIVE },
179
 
    { "getFilter", (JSNative)getFilter_func, 0, JSFUN_FAST_NATIVE },
 
176
    { "setExtend", (JSNative)setExtend_func, 0, 0 },
 
177
    { "getExtend", (JSNative)getExtend_func, 0, 0 },
 
178
    { "setFilter", (JSNative)setFilter_func, 0, 0 },
 
179
    { "getFilter", (JSNative)getFilter_func, 0, 0 },
180
180
    { NULL }
181
181
};
182
182