Revision: 12830
http://sourceforge.net/p/plplot/code/12830
Author: andrewross
Date: 2013-12-09 14:12:01 +0000 (Mon, 09 Dec 2013)
Log Message:
-----------
Remove const qualified from strings since they are not strictly const (we allocate / deallocate them).
Modified Paths:
--------------
trunk/include/disptab.h
Modified: trunk/include/disptab.h
===================================================================
--- trunk/include/disptab.h 2013-12-09 13:51:15 UTC (rev 12829)
+++ trunk/include/disptab.h 2013-12-09 14:12:01 UTC (rev 12830)
@@ -77,8 +77,8 @@
typedef struct
{
- const char *pl_MenuStr;
- const char *pl_DevName;
+ char *pl_MenuStr;
+ char *pl_DevName;
int pl_type;
int pl_seq;
plD_init_fp pl_init;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|