Skip to content

Commit

Permalink
fix improperly declared property types
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Vickery committed Apr 2, 2009
1 parent 4c8c900 commit 627b66d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Classes/DogViewController.h
Expand Up @@ -21,7 +21,7 @@
}

@property(nonatomic , retain) Person *owner;
@property(nonatomic , retain) NSArray *dogs;
@property(nonatomic , retain) NSMutableArray *dogs;
@property(nonatomic , retain) AddDogViewController *addController;
@property(nonatomic , retain) UITableView *tableView;

Expand Down
2 changes: 1 addition & 1 deletion Classes/DogViewController.m
Expand Up @@ -31,7 +31,7 @@ - (void) addDogButtonClicked {
}

- (void) loadDogs {
self.dogs = [owner findAllDogs];
self.dogs = [NSMutableArray arrayWithArray:[owner findAllDogs]];
[tableView reloadData];
}

Expand Down
2 changes: 1 addition & 1 deletion Classes/PeopleViewController.h
Expand Up @@ -15,7 +15,7 @@
IBOutlet UIBarButtonItem * addButton;
}

@property (nonatomic , retain) NSArray* people;
@property (nonatomic , retain) NSMutableArray* people;
-(IBAction) refreshButtonWasPressed;
-(IBAction) addButtonWasPressed;
@property(nonatomic , retain) UITableView *tableView;
Expand Down
2 changes: 1 addition & 1 deletion Classes/PeopleViewController.m
Expand Up @@ -26,7 +26,7 @@ - (void)viewWillAppear:(BOOL)animated {
}

- (void) loadPeople {
self.people = [Person findAllRemote];
self.people = [NSMutableArray arrayWithArray:[Person findAllRemote]];
[tableView reloadData];
}

Expand Down

0 comments on commit 627b66d

Please sign in to comment.