diff --git a/Source/NSButton.m b/Source/NSButton.m index 1d4f8c299..7c24c37d5 100644 --- a/Source/NSButton.m +++ b/Source/NSButton.m @@ -137,6 +137,21 @@ id _nsbuttonCellClass = nil; return [_cell state]; } +- (BOOL) allowsMixedState +{ + return [_cell allowsMixedState]; +} + +- (void) setAllowsMixedState: (BOOL)flag +{ + [_cell setAllowsMixedState: flag]; +} + +- (void)setNextState +{ + [_cell setNextState]; +} + // // Setting the Repeat Interval //