summaryrefslogtreecommitdiff
path: root/textscreen/txt_window_action.c
diff options
context:
space:
mode:
authorSimon Howard2009-09-20 15:27:40 +0000
committerSimon Howard2009-09-20 15:27:40 +0000
commit42f7a9b8a27ae1192b49005f5be3eba32f740d05 (patch)
treec8e5898cefc9a4f8af061528ad0b755fbcdf4bb6 /textscreen/txt_window_action.c
parent10da45b90cba29506c142982e76abc35c39d5d26 (diff)
downloadchocolate-doom-42f7a9b8a27ae1192b49005f5be3eba32f740d05.tar.gz
chocolate-doom-42f7a9b8a27ae1192b49005f5be3eba32f740d05.tar.bz2
chocolate-doom-42f7a9b8a27ae1192b49005f5be3eba32f740d05.zip
Use "const char" in libtextscreen where appropriate (thanks entryway).
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1679
Diffstat (limited to 'textscreen/txt_window_action.c')
-rw-r--r--textscreen/txt_window_action.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/textscreen/txt_window_action.c b/textscreen/txt_window_action.c
index 45a2482c..a326a5ed 100644
--- a/textscreen/txt_window_action.c
+++ b/textscreen/txt_window_action.c
@@ -101,7 +101,7 @@ txt_widget_class_t txt_window_action_class =
NULL,
};
-txt_window_action_t *TXT_NewWindowAction(int key, char *label)
+txt_window_action_t *TXT_NewWindowAction(int key, const char *label)
{
txt_window_action_t *action;