diff options
| author | Nat Goodspeed <nat@lindenlab.com> | 2019-09-25 16:48:36 -0400 | 
|---|---|---|
| committer | Nat Goodspeed <nat@lindenlab.com> | 2019-09-25 16:48:36 -0400 | 
| commit | 52c9f57819fe541980d0f2668afa31376f1bb29e (patch) | |
| tree | da598fb92dfa593f47b259ec2e102ff359b37c19 | |
| parent | c0b13466f1294ca6b8889ed7765926d5ed7f3b0d (diff) | |
DRTVWR-476: Track change to NSView in Xcode 11's 10.15 SDK.
| -rw-r--r-- | indra/llwindow/llopenglview-objc.mm | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/indra/llwindow/llopenglview-objc.mm b/indra/llwindow/llopenglview-objc.mm index 33eed7227a..247e6f8186 100644 --- a/indra/llwindow/llopenglview-objc.mm +++ b/indra/llwindow/llopenglview-objc.mm @@ -825,7 +825,7 @@ attributedStringInfo getSegments(NSAttributedString *str)      [super setMarkedText:aString selectedRange:selectedRange replacementRange:replacementRange];      if ([aString length] == 0)      // this means Input Widow becomes empty      { -        [_window orderOut:_window];     // Close this to avoid empty Input Window +        [self.window orderOut:self.window];     // Close this to avoid empty Input Window      }  } @@ -849,7 +849,7 @@ attributedStringInfo getSegments(NSAttributedString *str)          (mKeyPressed >= 0xF700 && mKeyPressed <= 0xF8FF))      {          // this is case a) of above comment -        [_window orderOut:_window];     // to avoid empty Input Window +        [self.window orderOut:self.window];     // to avoid empty Input Window      }  } | 
