diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2010-11-20 11:12:55 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2010-11-20 11:12:55 -0800 |
commit | 4ac002703c8bda62f768f581e1ec81bbf7446365 (patch) | |
tree | 361657cfecd46015788d64ffd1f2b8d75847d84f | |
parent | 0d7aa29c6209391cf8307c19b5cf84528f8c2184 (diff) |
create_keypad: declare list of button name strings as const
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | xcalc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -232,7 +232,7 @@ static void create_display(Widget parent) static void create_keypad(Widget parent) { - static char *Keyboard[] = { + static const char *Keyboard[] = { "button1", "button2", "button3", "button4", "button5", "button6", "button7", "button8", "button9", "button10", "button11","button12","button13","button14","button15", |