diff --git a/src/uifc/uifc.h b/src/uifc/uifc.h index ae68c8e869ee34cd1289b03f61330a60a65ee992..6eeffa3553fc9c9f6aa1787d33bb941c8bff1196 100644 --- a/src/uifc/uifc.h +++ b/src/uifc/uifc.h @@ -481,7 +481,7 @@ typedef struct { /* Shows a scrollable text buffer - optionally parsing "help markup codes" */ /****************************************************************************/ void (*showbuf)(int mode, int left, int top, int width, int height - ,const char *title, char *hbuf, int *curp, int *barp); + ,const char *title, const char *hbuf, int *curp, int *barp); /****************************************************************************/ /* Updates time in upper left corner of screen with current time in ASCII/ */ diff --git a/src/uifc/uifc32.c b/src/uifc/uifc32.c index ec0a426fed592202becadd636cb13e10dc31e973..185bf3be946be99587ca42ffe9a96a8c3b071594 100644 --- a/src/uifc/uifc32.c +++ b/src/uifc/uifc32.c @@ -88,7 +88,7 @@ static BOOL deny(char *fmt, ...); static void upop(const char *str); static void sethelp(int line, char* file); static void showbuf(int mode, int left, int top, int width, int height, const char *title - , char *hbuf, int *curp, int *barp); + , const char *hbuf, int *curp, int *barp); /* Dynamic menu support */ static int *last_menu_cur=NULL; @@ -2690,12 +2690,12 @@ void sethelp(int line, char* file) /****************************************************************************/ /* Shows a scrollable text buffer - optionally parsing "help markup codes" */ /****************************************************************************/ -void showbuf(int mode, int left, int top, int width, int height, const char *title, char *hbuf, int *curp, int *barp) +void showbuf(int mode, int left, int top, int width, int height, const char *title, const char *hbuf, int *curp, int *barp) { char inverse=0,high=0; struct vmem_cell *textbuf; struct vmem_cell *p; - char *pc; + const char *cpc; struct vmem_cell *oldp=NULL; int i,j,k,len; int lines; @@ -2768,8 +2768,8 @@ void showbuf(int mode, int left, int top, int width, int height, const char *tit } tmp_buffer2[i].ch = api->chars->help_titlebreak_left; i+=2; - for(pc=title;*pc && pc < &title[j];pc++) { - tmp_buffer2[i].ch=*pc; + for(cpc=title;*cpc && cpc < &title[j];cpc++) { + tmp_buffer2[i].ch=*cpc; i++; } i++;