From: <ai...@us...> - 2013-11-05 16:37:05
|
Revision: 12662 http://sourceforge.net/p/plplot/code/12662 Author: airwin Date: 2013-11-05 16:36:59 +0000 (Tue, 05 Nov 2013) Log Message: ----------- Increase NDEV from 20 (which errored out with a message about too many devices) to a more generous 100. That value solved the error and is consistent with the NDEV value used in other parts of our code, e.g., bindings/tk/plframe.c and drivers/wxwidgets.cpp. Modified Paths: -------------- trunk/bindings/tk-x-plat/plplotter.c Modified: trunk/bindings/tk-x-plat/plplotter.c =================================================================== --- trunk/bindings/tk-x-plat/plplotter.c 2013-11-05 16:24:11 UTC (rev 12661) +++ trunk/bindings/tk-x-plat/plplotter.c 2013-11-05 16:36:59 UTC (rev 12662) @@ -91,7 +91,7 @@ // plplot_tkwin_ccmap is statically defined in pltkwd.h. Note that // tkwin.c also includes that header and uses that variable. -#define NDEV 20 // Max number of output device types +#define NDEV 100 // Max number of output device types // // A data structure of the following type is kept for each This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |