Browse Source

Added Mike's suggestion for more const correctness;


			
			
				pull/49/head
			
			
		
Greg Ercolano 16 years ago
parent
commit
345501a1dd
  1. 4
      FL/names.h

4
FL/names.h

@ -30,7 +30,7 @@
#ifndef FL_NAMES_H #ifndef FL_NAMES_H
#define FL_NAMES_H #define FL_NAMES_H
const char *fl_eventnames[] = const char * const fl_eventnames[] =
{ {
"FL_NO_EVENT", "FL_NO_EVENT",
"FL_PUSH", "FL_PUSH",
@ -58,7 +58,7 @@ const char *fl_eventnames[] =
"FL_DND_RELEASE", "FL_DND_RELEASE",
}; };
const char *fl_fontnames[] = const char * const fl_fontnames[] =
{ {
"FL_HELVETICA", "FL_HELVETICA",
"FL_HELVETICA_BOLD", "FL_HELVETICA_BOLD",

Loading…
Cancel
Save