clean up deprecated class list

This commit is contained in:
John Cupitt 2012-11-21 11:12:19 +00:00
parent 047d78261a
commit ef54a06f80
2 changed files with 3 additions and 23 deletions

14
TODO
View File

@ -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

View File

@ -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