comparison Gui/app.h @ 19110:08888397444e

marks several strings inside structs as const when they hold just read-only information and modifies GetLanguage in Gui/mplayer/gtk/menu.c to cope which the changes.
author reynaldo
date Sun, 16 Jul 2006 01:40:24 +0000
parents f9a939c204ad
children
comparison
equal deleted inserted replaced
19109:6e840952870d 19110:08888397444e
92 // ---------------------- 92 // ----------------------
93 93
94 typedef struct 94 typedef struct
95 { 95 {
96 int msg; 96 int msg;
97 char * name; 97 const char * name;
98 } evName; 98 } evName;
99 99
100 extern int evBoxs; 100 extern int evBoxs;
101 extern evName evNames[]; 101 extern evName evNames[];
102 102