From 345501a1ddd9e0911fa31c5d26bb6e06884ffa6d Mon Sep 17 00:00:00 2001 From: Greg Ercolano Date: Tue, 31 Mar 2009 22:41:10 +0000 Subject: [PATCH] Added Mike's suggestion for more const correctness; const char * -> const char * const git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6731 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- FL/names.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FL/names.h b/FL/names.h index 19a236fb1..a1870e2ea 100644 --- a/FL/names.h +++ b/FL/names.h @@ -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 @@ const char *fl_eventnames[] = "FL_DND_RELEASE", }; -const char *fl_fontnames[] = +const char * const fl_fontnames[] = { "FL_HELVETICA", "FL_HELVETICA_BOLD",