home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-1.iso / CDROM / READMEs / Peanuts-1 / Patches / loginwindow_patch-3.1.README < prev    next >
Encoding:
Text File  |  1996-11-09  |  591 b   |  18 lines

  1. Patches the loginwindow.app to eradicate the restart and power
  2. buttons from the login window.
  3.  
  4. The buttons on the login window are instances of the LoginButton class.
  5. This patch works by patching the loginwindow.app's LoginButton class's
  6. instance method initWithImage:altImage:andString: to be equivalent to
  7.  
  8. - initWithImage:image altImage:altImage andString:(char *)aString
  9. {
  10.   return nil;
  11. }
  12.  
  13. This program must be run as root, since it writes to the file
  14. /usr/lib/NextStep/loginwindow.app/loginwindow.
  15.  
  16. Christopher J. Kane (kane@cs.purdue.edu)
  17. Released into public domain; August 13, 1993.
  18.