From ef54a06f801f86f0b9c98a4611d0ad397f16f780 Mon Sep 17 00:00:00 2001 From: John Cupitt Date: Wed, 21 Nov 2012 11:12:19 +0000 Subject: [PATCH] clean up deprecated class list --- TODO | 14 -------------- libvips/deprecated/wrapvips7.c | 12 +++--------- 2 files changed, 3 insertions(+), 23 deletions(-) diff --git a/TODO b/TODO index dcb75c12..35a97ea1 100644 --- a/TODO +++ b/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 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 diff --git a/libvips/deprecated/wrapvips7.c b/libvips/deprecated/wrapvips7.c index 46695aaa..0857c755 100644 --- a/libvips/deprecated/wrapvips7.c +++ b/libvips/deprecated/wrapvips7.c @@ -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