Author: engelsman
Date: 2010-11-13 01:01:45 -0800 (Sat, 13 Nov 2010)
New Revision: 7824
Log:
fixed const correctness in fluid/Fl_Function_Type.cxx (STR #2441)



Modified:
   branches/branch-1.3/fluid/Fl_Function_Type.cxx

Modified: branches/branch-1.3/fluid/Fl_Function_Type.cxx
===================================================================
--- branches/branch-1.3/fluid/Fl_Function_Type.cxx      2010-11-12 15:55:09 UTC 
(rev 7823)
+++ branches/branch-1.3/fluid/Fl_Function_Type.cxx      2010-11-13 09:01:45 UTC 
(rev 7824)
@@ -471,7 +471,7 @@
 void Fl_Code_Type::write_code1() {
   const char* c = name();
   if (!c) return;
-  char *pch;
+  const char *pch;
   const char *ind = indent();
   while( (pch=strchr(c,'\n')) )
   {

_______________________________________________
fltk-commit mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-commit

Reply via email to