Guest User

Untitled

a guest
Jul 22nd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. - (void)runModalSession:(CPModalSession)aModalSession
  2. {
  3. aModalSession._previous = _currentSession;
  4. _currentSession = aModalSession;
  5.  
  6. var theWindow = aModalSession._window;
  7.  
  8. [theWindow center];
  9. [theWindow makeKeyWindow];
  10. [theWindow orderFront:self];
  11.  
  12. // [theWindow._bridge _obscureWindowsBelowModalWindow];
  13.  
  14. [CPApp setCallback:_CPRunModalLoop forNextEventMatchingMask:CPAnyEventMask untilDate:nil inMode:0 dequeue:NO];
  15. }
Add Comment
Please, Sign In to add comment