Changeset 3419

Show
Ignore:
Timestamp:
11/24/06 18:21:46 (2 years ago)
Author:
timothy
Message:

Fixing more warnings.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Chat Core/MVChatRoom.m

    r3344 r3419  
    4646 
    4747+ (id) coerceChatRoom:(id) value toString:(Class) class { 
    48         return [value name]; 
     48        return [(MVChatRoom *)value name]; 
    4949} 
    5050 
  • trunk/Inspectors/JVChatUserInspector.m

    r3418 r3419  
    206206        NSDate *current = [[NSDate dateWithTimeIntervalSinceNow:[[_user attributeForKey:MVChatUserLocalTimeDifferenceAttribute] doubleValue]] dateWithCalendarFormat:format timeZone:nil]; 
    207207        [localTime setObjectValue:current]; 
    208         [localTime setToolTip:current]; 
     208        [localTime setToolTip:[current description]]; 
    209209} 
    210210