Fixed a small error that caused clicking a Checkbox to crash on Mac OS X.

This commit is contained in:
Pietro Gagliardi 2014-08-04 13:44:48 -04:00
parent 0ac40be173
commit 39a2414cf9
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ void setSmallControlFont(id control)
- (IBAction)checkboxToggled:(id)sender
{
checkboxChecked(self->gocontrol);
checkboxToggled(self->gocontrol);
}
@end