Changeset 28762

Show
Ignore:
Timestamp:
12/02/08 18:05:06 (5 weeks ago)
Author:
anevilyak
Message:

Correctly indicate "Copying" vs "Moving" state in status window (thanks Adrian Panasiuk for pointing this out).

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • haiku/trunk/src/kits/tracker/FSUtils.cpp

    r28731 r28762  
    592592                        { 
    593593                                if (gStatusWindow) 
    594                                         gStatusWindow->CreateStatusItem(thread, kCopyState); 
     594                                        gStatusWindow->CreateStatusItem(thread,  
     595                                                moveMode == kMoveSelectionTo ? kMoveState : kCopyState); 
    595596 
    596597                                int32 totalItems = 0; 
     
    617618                                // moved, links created 
    618619                                if (gStatusWindow) { 
    619                                         gStatusWindow->CreateStatusItem(thread, 
    620                                                 moveMode == kMoveSelectionTo 
    621                                                         ? kMoveState : kCreateLinkState); 
     620                                        gStatusWindow->CreateStatusItem(thread, kCreateLinkState); 
    622621                                        gStatusWindow->InitStatusItem(thread, numItems, numItems, 
    623622                                                destRef);