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

Float vs. double fixes to pacify GCC.

File:
1 edited

Legend:

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

    r513 r601  
    4141        if (((int)interval % multiplierTag) == 0) {
    4242            NSFormatter *formatter = [self formatter];
    43             int intervalValue = interval / multiplierTag;
     43            int intervalValue = (int)interval / multiplierTag;
    4444            if (formatter != nil) {
    4545                id ignored;
Note: See TracChangeset for help on using the changeset viewer.