From: <ai...@us...> - 2010-11-16 20:33:07
|
Revision: 11334 http://plplot.svn.sourceforge.net/plplot/?rev=11334&view=rev Author: airwin Date: 2010-11-16 20:33:01 +0000 (Tue, 16 Nov 2010) Log Message: ----------- Place values of PL_LEGEND_LEFT and PL_LEGEND_RIGHT in more natural order. Modified Paths: -------------- trunk/bindings/swig-support/plplotcapi.i trunk/include/plplot.h Modified: trunk/bindings/swig-support/plplotcapi.i =================================================================== --- trunk/bindings/swig-support/plplotcapi.i 2010-11-16 04:52:27 UTC (rev 11333) +++ trunk/bindings/swig-support/plplotcapi.i 2010-11-16 20:33:01 UTC (rev 11334) @@ -104,8 +104,8 @@ #define PL_LEGEND_BACKGROUND 32 #define PL_LEGEND_BOUNDING_BOX 64 #define PL_LEGEND_ROW_MAJOR 128 -#define PL_LEGEND_RIGHT 256 -#define PL_LEGEND_LEFT 512 +#define PL_LEGEND_LEFT 256 +#define PL_LEGEND_RIGHT 512 #define PL_LEGEND_UPPER 1024 #define PL_LEGEND_LOWER 2048 #define PL_LEGEND_INSIDE 4096 Modified: trunk/include/plplot.h =================================================================== --- trunk/include/plplot.h 2010-11-16 04:52:27 UTC (rev 11333) +++ trunk/include/plplot.h 2010-11-16 20:33:01 UTC (rev 11334) @@ -1218,8 +1218,8 @@ #define PL_LEGEND_BACKGROUND 32 #define PL_LEGEND_BOUNDING_BOX 64 #define PL_LEGEND_ROW_MAJOR 128 -#define PL_LEGEND_RIGHT 256 -#define PL_LEGEND_LEFT 512 +#define PL_LEGEND_LEFT 256 +#define PL_LEGEND_RIGHT 512 #define PL_LEGEND_UPPER 1024 #define PL_LEGEND_LOWER 2048 #define PL_LEGEND_INSIDE 4096 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |