Changeset 3630
- Timestamp:
- 01/26/06 22:12:34 (3 years ago)
- Files:
-
- WiredClient/trunk/WCChat.m (modified) (1 diff)
- WiredClient/trunk/WCMessages.m (modified) (1 diff)
- WiredClient/trunk/WCNews.m (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
WiredClient/trunk/WCChat.m
r3620 r3630 99 99 } 100 100 101 [_chatOutputTextView setLinkTextAttributes: 102 [NSDictionary dictionaryWithObject:[WCSettings objectForKey:WCChatURLsColor] 103 forKey:NSForegroundColorAttributeName]]; 101 [_chatOutputTextView setLinkTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys: 102 [WCSettings objectForKey:WCChatURLsColor], NSForegroundColorAttributeName, 103 [NSNumber numberWithInt:NSSingleUnderlineStyle], NSUnderlineStyleAttributeName, 104 NULL]]; 104 105 105 106 [_userListTableView setFont:[WCSettings objectForKey:WCChatUserListFont]]; WiredClient/trunk/WCMessages.m
r3621 r3630 124 124 [_messageTextView setNeedsDisplay:YES]; 125 125 126 [_messageTextView setLinkTextAttributes: 127 [NSDictionary dictionaryWithObject:[WCSettings objectForKey:WCChatURLsColor] 128 forKey:NSForegroundColorAttributeName]]; 126 [_messageTextView setLinkTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys: 127 [WCSettings objectForKey:WCChatURLsColor], NSForegroundColorAttributeName, 128 [NSNumber numberWithInt:NSSingleUnderlineStyle], NSUnderlineStyleAttributeName, 129 NULL]]; 129 130 130 131 [_replyTextView setFont:[WCSettings objectForKey:WCMessagesFont]]; WiredClient/trunk/WCNews.m
r3619 r3630 79 79 [_newsTextView setNeedsDisplay:YES]; 80 80 81 [_newsTextView setLinkTextAttributes: 82 [NSDictionary dictionaryWithObject:[WCSettings objectForKey:WCChatURLsColor] 83 forKey:NSForegroundColorAttributeName]]; 81 [_newsTextView setLinkTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys: 82 [WCSettings objectForKey:WCChatURLsColor], NSForegroundColorAttributeName, 83 [NSNumber numberWithInt:NSSingleUnderlineStyle], NSUnderlineStyleAttributeName, 84 NULL]]; 84 85 85 86 [_postTextView setFont:[WCSettings objectForKey:WCNewsFont]];
