Lines Matching refs:table_apps
417 if (table_apps != nil)
418 oldapps = table_apps;
420 table_apps = [[NSMutableArray alloc] initWithCapacity:1];
422 [table_apps addObjectsFromArray:apps];
443 [self install_apps_menu:table_apps];
445 [NSApp prefs_set_array:@PREFS_APPSMENU value:table_apps];
450 [table_apps release];
451 table_apps = nil;
464 if (i > [table_apps count])
474 [table_apps insertObject:item atIndex:i];
492 if (i > [table_apps count] - 1) return; /* avoid exceptions */
496 item = [[table_apps objectAtIndex:i] mutableCopy];
497 [table_apps insertObject:item atIndex:i];
512 if (i > [table_apps count] - 1) return; /* avoid exceptions */
516 [table_apps removeObjectAtIndex:i];
521 row = MIN (row, [table_apps count] - 1);
528 if (table_apps == nil) return 0;
530 return [table_apps count];
539 if (table_apps == nil) return nil;
543 item = [table_apps objectAtIndex:row];
556 if (table_apps == nil) return;
560 item = [table_apps objectAtIndex:row];