home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / Starter / Source / CommandView.m < prev    next >
Encoding:
Text File  |  1994-09-17  |  233 b   |  14 lines

  1.  
  2. #import "CommandView.h"
  3. #import "Controller.h"
  4.  
  5. @implementation CommandView
  6.  
  7. - (BOOL)performKeyEquivalent:(NXEvent *)theEvent 
  8. {    
  9.     return [[NXApp delegate] getInspectorPanelWithScreen:
  10.       (theEvent->data.key.charCode)-'1'];
  11. }
  12.  
  13. @end
  14.