]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - panel/p_delete.c
ncurses 6.2 - patch 20200308
[ncurses.git] / panel / p_delete.c
index 3f975d3b3e89f6a46afbfa2c328f7f0c7c17c752..6b122a6c9b92cc127e1f57bf743c1f2ccb870bb6 100644 (file)
@@ -1,5 +1,6 @@
 /****************************************************************************
 /****************************************************************************
- * Copyright (c) 1998 Free Software Foundation, Inc.                        *
+ * Copyright 2020 Thomas E. Dickey                                          *
+ * Copyright 1998-2009,2010 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            *
  *                                                                          *
  * Permission is hereby granted, free of charge, to any person obtaining a  *
  * copy of this software and associated documentation files (the            *
@@ -29,6 +30,7 @@
 /****************************************************************************
  *  Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1995                    *
  *     and: Eric S. Raymond <esr@snark.thyrsus.com>                         *
 /****************************************************************************
  *  Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1995                    *
  *     and: Eric S. Raymond <esr@snark.thyrsus.com>                         *
+ *     and: Juergen Pfeifer                         1999,2008               *
  ****************************************************************************/
 
 /* p_delete.c
  ****************************************************************************/
 
 /* p_delete.c
  */
 #include "panel.priv.h"
 
  */
 #include "panel.priv.h"
 
-MODULE_ID("$Id: p_delete.c,v 1.4 1999/11/25 13:49:26 juergen Exp $")
+MODULE_ID("$Id: p_delete.c,v 1.11 2020/02/02 23:34:34 tom Exp $")
 
 
-int
-del_panel(PANEL *pan)
+NCURSES_EXPORT(int)
+del_panel(PANEL * pan)
 {
   int err = OK;
 {
   int err = OK;
-  if(pan)
+
+  T((T_CALLED("del_panel(%p)"), (void *)pan));
+  if (pan)
     {
       dBug(("--> del_panel %s", USER_PTR(pan->user)));
     {
       dBug(("--> del_panel %s", USER_PTR(pan->user)));
-      HIDE_PANEL(pan,err,FALSE);
-      free((void *)pan);
+      {
+       GetHook(pan);
+       HIDE_PANEL(pan, err, OK);
+       free((void *)pan);
+      }
     }
   else
     err = ERR;
     }
   else
     err = ERR;
-  return(err);
+
+  returnCode(err);
 }
 }