summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Ercolano <erco@seriss.com>2009-03-31 22:41:10 +0000
committerGreg Ercolano <erco@seriss.com>2009-03-31 22:41:10 +0000
commit345501a1ddd9e0911fa31c5d26bb6e06884ffa6d (patch)
treec015c4c4e1f5abeca64285c6be13fa1d55195b9b
parentb6cf0250b6378b29f823184b30e4534598c87b54 (diff)
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
-rw-r--r--FL/names.h4
1 files 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",