]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - panel/p_update.c
ncurses 5.6 - patch 20061223
[ncurses.git] / panel / p_update.c
index 983d0b607288b22bc57b6ba9f53a5d4863a53aee..5967718160ff901e3894241f7ce7f2bd9cffcc2f 100644 (file)
@@ -1,5 +1,5 @@
 /****************************************************************************
 /****************************************************************************
- * Copyright (c) 1998 Free Software Foundation, Inc.                        *
+ * Copyright (c) 1998-2000,2005 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            *
  */
 #include "panel.priv.h"
 
  */
 #include "panel.priv.h"
 
-MODULE_ID("$Id: p_update.c,v 1.5 1999/11/25 13:49:26 juergen Exp $")
+MODULE_ID("$Id: p_update.c,v 1.9 2005/02/19 16:49:47 tom Exp $")
 
 
-void
+NCURSES_EXPORT(void)
 update_panels(void)
 {
   PANEL *pan;
 
 update_panels(void)
 {
   PANEL *pan;
 
+  T((T_CALLED("update_panels()")));
   dBug(("--> update_panels"));
   pan = _nc_bottom_panel;
   dBug(("--> update_panels"));
   pan = _nc_bottom_panel;
-  while(pan && pan->above)
+  while (pan && pan->above)
     {
     {
-      PANEL_UPDATE(pan,pan->above, FALSE);
+      PANEL_UPDATE(pan, pan->above);
       pan = pan->above;
     }
 
       pan = pan->above;
     }
 
@@ -57,4 +58,6 @@ update_panels(void)
       Wnoutrefresh(pan);
       pan = pan->above;
     }
       Wnoutrefresh(pan);
       pan = pan->above;
     }
+
+  returnVoid;
 }
 }