From: <ai...@us...> - 2011-01-05 08:14:23
|
Revision: 11439 http://plplot.svn.sourceforge.net/plplot/?rev=11439&view=rev Author: airwin Date: 2011-01-05 08:14:16 +0000 (Wed, 05 Jan 2011) Log Message: ----------- Deal with decisions about ignoring pllegend at the bindings/<language>/*.i level rather than at the bindings/swig-support/plplotcapi.i level. Modified Paths: -------------- trunk/bindings/java/plplotjavac.i trunk/bindings/lua/plplotluac.i trunk/bindings/swig-support/plplotcapi.i Modified: trunk/bindings/java/plplotjavac.i =================================================================== --- trunk/bindings/java/plplotjavac.i 2011-01-05 08:12:42 UTC (rev 11438) +++ trunk/bindings/java/plplotjavac.i 2011-01-05 08:14:16 UTC (rev 11439) @@ -1739,5 +1739,8 @@ } #endif +// Not implemented yet. +%ignore pllegend; + /* swig compatible PLplot API definitions from here on. */ %include plplotcapi.i Modified: trunk/bindings/lua/plplotluac.i =================================================================== --- trunk/bindings/lua/plplotluac.i 2011-01-05 08:12:42 UTC (rev 11438) +++ trunk/bindings/lua/plplotluac.i 2011-01-05 08:14:16 UTC (rev 11439) @@ -1156,6 +1156,9 @@ %rename(abort) plabort; %rename(MinMax2dGrid) plMinMax2dGrid; +// Not implemented yet. +%ignore pllegend; + /* swig compatible PLplot API definitions from here on. */ %include plplotcapi.i Modified: trunk/bindings/swig-support/plplotcapi.i =================================================================== --- trunk/bindings/swig-support/plplotcapi.i 2011-01-05 08:12:42 UTC (rev 11438) +++ trunk/bindings/swig-support/plplotcapi.i 2011-01-05 08:14:16 UTC (rev 11439) @@ -526,7 +526,6 @@ void pllab( const char *xlabel, const char *ylabel, const char *tlabel ); -#ifdef SWIG_PYTHON %feature( "autodoc", "Create a discrete annotated legend using boxes, lines, and/or lines of symbols." ) pllegend; void pllegend( PLFLT *OUTPUT, PLFLT *OUTPUT, @@ -545,7 +544,6 @@ const PLINT *ArrayCk, const char **ArrayCk ); %feature( "autodoc", "Set position of the light source." ) pllightsource; -#endif void pllightsource( PLFLT x, PLFLT y, PLFLT z ); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |