X-Git-Url: http://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=panel%2Fllib-lpanelw;h=4d6688e5e13ec312a1424fbedad8660d178c7af8;hp=503b34345ba860d806d4097b50f346ddd61adbdf;hb=6a530b46563470c2ca73579d1994a0c8e275dd98;hpb=32f9f5f12cd9159261f9db228461049e8c770404 diff --git a/panel/llib-lpanelw b/panel/llib-lpanelw index 503b3434..4d6688e5 100644 --- a/panel/llib-lpanelw +++ b/panel/llib-lpanelw @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 2002-2005,2010 Free Software Foundation, Inc. * + * Copyright (c) 2002-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 2002-2005,2010 * + * Author: Thomas E. Dickey 2002-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 */