BlankZeroFormatter now returns an empty NSString instead of nil, which was causing an unhandled exception that locked up the window

CQTexperiment
Chris Moeller 2013-09-29 17:30:23 -07:00
parent d8787c2016
commit 83d59d0c13
1 changed files with 2 additions and 0 deletions

View File

@ -24,6 +24,8 @@
if (value)
result = [NSString stringWithFormat:@"%i", value];
else
result = [NSString string];
return result;
}