Show
Ignore:
Timestamp:
10/02/07 20:02:57 (1 year ago)
Author:
akempgen
Message:

forgot some brackets

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Inspectors/JVChatUserInspector.m

    r3745 r3746  
    170170        [realName setToolTip:( [_user realName] ? [_user realName] : NSLocalizedString( @"n/a", "not applicable or not available" ) )]; 
    171171 
    172         [connected setObjectValue:( ! [_user status] == MVChatUserOfflineStatus ? MVReadableTime( [[_user dateConnected] timeIntervalSince1970], YES ) : NSLocalizedString( @"offline", "offline, not connected" ) )]; 
    173         [idle setObjectValue:( ! [_user status] == MVChatUserOfflineStatus ? MVReadableTime( [[NSDate date] timeIntervalSince1970] + [_user idleTime], YES ) : NSLocalizedString( @"n/a", "not applicable or not available" ) )]; 
     172        [connected setObjectValue:( ! ( [_user status] == MVChatUserOfflineStatus ) ? MVReadableTime( [[_user dateConnected] timeIntervalSince1970], YES ) : NSLocalizedString( @"offline", "offline, not connected" ) )]; 
     173        [idle setObjectValue:( ! ( [_user status] == MVChatUserOfflineStatus ) ? MVReadableTime( [[NSDate date] timeIntervalSince1970] + [_user idleTime], YES ) : NSLocalizedString( @"n/a", "not applicable or not available" ) )]; 
    174174 
    175175        if( _addressResolved ) [progress stopAnimation:nil];