home *** CD-ROM | disk | FTP | other *** search
- /*
- bordclos.c 2/87
-
- % bord_Close
-
- OWL 1.1
- Copyright (c) 1986, 1987, 1988, by Oakland Group, Inc.
- ALL RIGHTS RESERVED.
-
- Revision History:
- -----------------
- 10/31/88 Ted: Removed linking.
- */
-
- #include "oakhead.h"
- #include "disppriv.h"
- #include "bordobj.h"
-
- void bord_Close(win)
- win_type win;
- /*
- Close a window's border object.
- */
- {
- if (win != NULL && win_border(win) != NULL) {
- obj_Close(win_border(win));
- win_setbd(win, NULL);
- }
- }
- /* -------------------------------------------------------------------------- */
-
-