Author: greg.ercolano
Date: 2009-03-31 15:41:10 -0700 (Tue, 31 Mar 2009)
New Revision: 6731
Log:

    Added Mike's suggestion for more const correctness;
    const char * -> const char * const



Modified:
   branches/branch-1.3/FL/names.h

Modified: branches/branch-1.3/FL/names.h
===================================================================
--- branches/branch-1.3/FL/names.h      2009-03-31 17:00:35 UTC (rev 6730)
+++ branches/branch-1.3/FL/names.h      2009-03-31 22:41:10 UTC (rev 6731)
@@ -30,7 +30,7 @@
 #ifndef FL_NAMES_H
 #define FL_NAMES_H
 
-const char *fl_eventnames[] =
+const char * const fl_eventnames[] =
 {
   "FL_NO_EVENT",
   "FL_PUSH",
@@ -58,7 +58,7 @@
   "FL_DND_RELEASE",
 };
 
-const char *fl_fontnames[] =
+const char * const fl_fontnames[] =
 {
   "FL_HELVETICA",
   "FL_HELVETICA_BOLD",

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

Reply via email to