diff options
Diffstat (limited to 'indra/llwindow')
| -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 decbd15efc..1b0b9213a5 100644 --- a/indra/llwindow/llopenglview-objc.mm +++ b/indra/llwindow/llopenglview-objc.mm @@ -816,7 +816,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      }  } @@ -840,7 +840,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      }  } | 
