home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / Starter / Source / DocumentWindow.m < prev    next >
Encoding:
Text File  |  1994-12-08  |  374 b   |  20 lines

  1.  
  2. #import <appkit/appkit.h>
  3. #import "DocumentWindow.h"
  4.  
  5. @implementation DocumentWindow
  6.  
  7. - miniaturize:sender
  8. {    /*  it is necessary to override this method because
  9.         the window by default does not send 'updateWindows'
  10.         message
  11.      */
  12.  
  13.     [super miniaturize:sender];
  14.     [NXApp perform:@selector(updateWindows) with:nil
  15.        afterDelay:1 cancelPrevious:YES];
  16.     return self;
  17. }
  18.  
  19. @end
  20.