Ignore:
Timestamp:
12/21/09 22:12:37 (14 years ago)
Author:
Nicholas Riley
Message:

Rename variables which shadow stdlib functions (and maxSize).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Cocoa/Pester/Source/PSAlarms.m

    r364 r602  
    161161}
    162162
    163 - (PSAlarm *)alarmAtIndex:(int)index;
    164 {
    165     return [alarms objectAtIndex: index];
    166 }
    167 
    168 - (void)removeAlarmAtIndex:(int)index;
    169 {
    170     [(PSAlarm *)[alarms objectAtIndex: index] cancelTimer];
    171     [alarms removeObjectAtIndex: index];
     163- (PSAlarm *)alarmAtIndex:(int)alarmIndex;
     164{
     165    return [alarms objectAtIndex: alarmIndex];
     166}
     167
     168- (void)removeAlarmAtIndex:(int)alarmIndex;
     169{
     170    [(PSAlarm *)[alarms objectAtIndex: alarmIndex] cancelTimer];
     171    [alarms removeObjectAtIndex: alarmIndex];
    172172}
    173173
Note: See TracChangeset for help on using the changeset viewer.