clean up deprecated class list
This commit is contained in:
parent
047d78261a
commit
ef54a06f80
14
TODO
14
TODO
@ -1,18 +1,4 @@
|
||||
|
||||
- have a web page with a list of the python member names
|
||||
|
||||
$ vips cpph all | grep join
|
||||
VImage bandjoin( VImage bandjoin_in2 ) throw( VError );
|
||||
static VImage
|
||||
gbandjoin( std::vector<VImage> gbandjoin_in ) throw( VError );
|
||||
VImage lrjoin( VImage lrjoin_in2 ) throw( VError );
|
||||
VImage tbjoin( VImage tbjoin_in2 ) throw( VError );
|
||||
|
||||
could generate some docs too?
|
||||
|
||||
perhaps it should be part of vips.c
|
||||
|
||||
|
||||
- check libtool version number, should be binary-compat with 7.30
|
||||
|
||||
- quadratic doesn't work for order 3
|
||||
|
@ -626,18 +626,12 @@ vips_wrap7_summary_class( VipsObjectClass *oclass, VipsBuf *buf )
|
||||
im_function *fn = class->fn;
|
||||
|
||||
if( fn )
|
||||
vips_buf_appendf( buf, "%s ", fn->name );
|
||||
vips_buf_appends( buf, fn->name );
|
||||
else
|
||||
vips_buf_appendf( buf, "%s ", G_OBJECT_CLASS_NAME( class ) );
|
||||
vips_buf_appends( buf, G_OBJECT_CLASS_NAME( class ) );
|
||||
|
||||
if( oclass->nickname )
|
||||
vips_buf_appendf( buf, "(%s), ", oclass->nickname );
|
||||
if( oclass->description )
|
||||
vips_buf_appendf( buf, "%s", oclass->description );
|
||||
|
||||
if( fn )
|
||||
vips_buf_appendf( buf, ", from package \"%s\"",
|
||||
im_package_of_function( fn->name )->name );
|
||||
vips_buf_appendf( buf, " - %s", oclass->description );
|
||||
}
|
||||
|
||||
static void
|
||||
|
Loading…
Reference in New Issue
Block a user