Ignore:
Timestamp:
05/24/09 20:50:02 (15 years ago)
Author:
Nicholas Riley
Message:

Add days and weeks to interval selection options.

File:
1 edited

Legend:

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

    r364 r513  
    6565            case 'm': case 'M': tag = 60; break;
    6666            case 'h': case 'H': tag = 60 * 60; break;
     67            case 'd': case 'D': tag = 60 * 60 * 24; break;
     68            case 'w': case 'W': tag = 60 * 60 * 24 * 7; break;
    6769            case 'u': case 'U': tag = -2; break;
    6870            default: break;
Note: See TracChangeset for help on using the changeset viewer.