home *** CD-ROM | disk | FTP | other *** search
- /*
- ### destroy integration windows ###
- */
-
- #include <suntool/sunview.h>
- #include <suntool/panel.h>
-
- void
- destroy_int_windows()
- {
- extern short int_panel_show;
- extern Frame int_frame;
- extern Panel int_panel;
-
- if(int_panel_show){
- window_destroy(int_panel);
- window_destroy(int_frame);
- int_panel_show=0;
- }
- }
-
-