diff options
| author | Pietro Gagliardi <[email protected]> | 2014-08-04 13:44:48 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-08-04 13:44:48 -0400 |
| commit | 39a2414cf94a6f69ddca853fd9ed97a576e30dd2 (patch) | |
| tree | 7eb278c03a5086585c49db4bcf19a1ff5bf8dc09 /redo/basicctrls_darwin.m | |
| parent | 0ac40be173f9a1410c5149da605ffd1db24fc911 (diff) | |
Fixed a small error that caused clicking a Checkbox to crash on Mac OS X.
Diffstat (limited to 'redo/basicctrls_darwin.m')
| -rw-r--r-- | redo/basicctrls_darwin.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/redo/basicctrls_darwin.m b/redo/basicctrls_darwin.m index 95567d6..d401f39 100644 --- a/redo/basicctrls_darwin.m +++ b/redo/basicctrls_darwin.m @@ -49,7 +49,7 @@ void setSmallControlFont(id control) - (IBAction)checkboxToggled:(id)sender { - checkboxChecked(self->gocontrol); + checkboxToggled(self->gocontrol); } @end |
