Changeset 3493

Show
Ignore:
Timestamp:
12/27/06 18:37:36 (2 years ago)
Author:
timothy
Message:

Make the server list work.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Controllers/MVBuddyListController.m

    r3492 r3493  
    588588 
    589589- (int) numberOfRowsInTableView:(NSTableView *) view { 
    590         return [_buddyOrder count]; 
     590        if( view == servers ) 
     591                return [[[MVConnectionsController defaultController] connections] count]; 
     592 
     593        if( view == buddies ) 
     594                return [_buddyOrder count]; 
     595 
     596        return 0; 
    591597} 
    592598