cocoaTouch/GravesViewController.m
changeset 3513 f589230fa21b
parent 3490 016b3172b645
--- a/cocoaTouch/GravesViewController.m	Thu Jun 17 11:42:23 2010 -0400
+++ b/cocoaTouch/GravesViewController.m	Thu Jun 17 19:57:51 2010 +0200
@@ -48,17 +48,16 @@
 
 // Customize the appearance of table view cells.
 -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
-    
     static NSString *CellIdentifier = @"Cell";
     
     UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
     if (cell == nil)
         cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
     
-    NSString *grave = [graveArray objectAtIndex:[indexPath row]];
+    NSString *grave = [self.graveArray objectAtIndex:[indexPath row]];
     cell.textLabel.text = [grave stringByDeletingPathExtension];
     
-    if ([grave isEqualToString:[teamDictionary objectForKey:@"grave"]]) {
+    if ([grave isEqualToString:[self.teamDictionary objectForKey:@"grave"]]) {
         cell.accessoryType = UITableViewCellAccessoryCheckmark;
         self.lastIndexPath = indexPath;
     } else {