X-Git-Url: http://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=panel%2Fllib-lpanel;h=02e105468ebb2e2591345cbdbdf2421c7615b61e;hp=85371ec73e06a4176311f74f9a4ce73d8ecf9079;hb=78b0123661ebab93d5bd5345b89e6e76d6560ec0;hpb=77afe78361875f531dc2bf8d73f2e781c8e76176 diff --git a/panel/llib-lpanel b/panel/llib-lpanel index 85371ec7..02e10546 100644 --- a/panel/llib-lpanel +++ b/panel/llib-lpanel @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 1998-2005,2010 Free Software Foundation, Inc. * + * Copyright (c) 1998-2010,2015 Free Software Foundation, Inc. * * * * Permission is hereby granted, free of charge, to any person obtaining a * * copy of this software and associated documentation files (the * @@ -27,7 +27,7 @@ ****************************************************************************/ /**************************************************************************** - * Author: Thomas E. Dickey 1997,2005,2010 * + * Author: Thomas E. Dickey 1996-on * ****************************************************************************/ /* LINTLIBRARY */ @@ -181,13 +181,13 @@ void update_panels(void) #undef set_panel_userptr int set_panel_userptr( PANEL *pan, - void *uptr) + const void *uptr) { return(*(int *)0); } #undef panel_userptr -void *panel_userptr( +const void *panel_userptr( const PANEL *pan) - { return(*(void **)0); } + { return(*(const void **)0); } /* ./p_win.c */