- Timestamp:
- Sep 12, 2016 2:21:32 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/platform/darwin/UICocoaSpecialControls.mm
r63797 r63803 568 568 bool UICocoaSegmentedButton::isSelected(int iSegment) const 569 569 { 570 return [nativeRef() isSelectedForSegment: iSegment]; 570 /* Return whether the segment is selected if segment index inside the bounds: */ 571 if (iSegment >=0 && iSegment < count()) 572 return [nativeRef() isSelectedForSegment: iSegment]; 573 574 /* False by default: */ 575 return false; 571 576 } 572 577
Note:
See TracChangeset
for help on using the changeset viewer.