Changeset 1301

Show
Ignore:
Timestamp:
05/22/04 10:06:45 (5 years ago)
Author:
morris
Message:

show transfers when upload begins

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • WiredClient/trunk/WCFiles.m

    r1298 r1301  
    1 /* $Id: WCFiles.m,v 1.32 2004/05/22 02:18:09 morris Exp $ */ 
     1/* $Id: WCFiles.m,v 1.33 2004/05/22 08:06:45 morris Exp $ */ 
    22 
    33/* 
     
    398398                while((path = [enumerator nextObject])) 
    399399                        [[_connection transfers] upload:path withDestination:_path]; 
     400 
     401                [[_connection transfers] showWindow:self]; 
    400402        } 
    401403} 
     
    459461         
    460462                while((file = [enumerator nextObject])) { 
    461                         if([[file path] compare:_selectPath options:NSCaseInsensitiveSearch] <= 0) { 
     463                        if([[file path] compare:_selectPath options:NSCaseInsensitiveSearch] <= 0) 
    462464                                row = i; 
    463                         } 
    464465 
    465466                        i++; 
     
    11831184                        [[_connection transfers] upload:path withDestination:destination]; 
    11841185                 
     1186                [[_connection transfers] showWindow:self]; 
     1187 
    11851188                return YES; 
    11861189        }