Skip to content

Commit

Permalink
* Fix bad assignment in TTMessageController setFields
Browse files Browse the repository at this point in the history
  • Loading branch information
joehewitt committed Apr 3, 2009
1 parent 98fc629 commit a83a113
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TTMessageController.m
Expand Up @@ -481,7 +481,7 @@ - (void)setDataSource:(id<TTTableViewDataSource>)dataSource {
- (void)setFields:(NSArray*)fields {
if (fields != _fields) {
[_fields release];
fields = [fields retain];
_fields = [fields retain];

if (_fieldViews) {
[self createFieldViews];
Expand Down

0 comments on commit a83a113

Please sign in to comment.