Changeset 123 for trunk/dll/mainwnd.c
- Timestamp:
- Dec 5, 2004, 1:20:19 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/mainwnd.c
r101 r123 7 7 8 8 Copyright (c) 1993-98 M. Kimes 9 Copyright (c) 2001, 200 2Steven H.Levine9 Copyright (c) 2001, 2004 Steven H.Levine 10 10 11 11 Revisions 11 Jun 02 SHL - Drop obsolete xor code 12 12 16 Oct 02 SHL - Handle large partitions 13 01 Aug 04 SHL - Rework lstrip/rstrip usage 13 14 14 15 ***********************************************************************/ … … 682 683 *path = 0; 683 684 WinQueryWindowText(hwnd,CCHMAXPATH,path); 684 lstrip(rstrip(path));685 bstrip(path); 685 686 // saymsg(MB_ENTER,HWND_DESKTOP,DEBUG_STRING,"Dragging: %s",path); 686 687 if(*path && !IsRoot(path)) … … 1650 1651 len = strlen(cl); 1651 1652 WinQueryWindowText(hwnd,1000 - len,cl + len); 1652 lstrip(rstrip(cl + len));1653 bstrip(cl + len); 1653 1654 if(strlen(cl) > len) { 1654 1655 WinSendMsg(WinQueryWindow(hwnd,QW_PARENT), … … 1659 1660 CCHMAXPATH, 1660 1661 directory); 1661 lstrip(rstrip(directory));1662 bstrip(directory); 1662 1663 if(*directory && (IsRoot(directory) || !IsFile(directory))) { 1663 1664 if(!FM2Command(directory,cl + len)) { … … 4691 4692 CCHMAXPATH, 4692 4693 temp); 4693 lstrip(rstrip(temp));4694 bstrip(temp); 4694 4695 if(*temp && 4695 4696 !DosQueryPathInfo(temp, … … 4729 4730 *name = 0; 4730 4731 WinQueryWindowText(hwndStatelist,13,name); 4731 lstrip(rstrip(name));4732 bstrip(name); 4732 4733 if(*name) { 4733 4734 if(SHORT1FROMMP(mp1) == IDM_SAVEDIRCNRSTATE) { … … 6501 6502 ((SHORT1FROMMP(mp1) == MAIN_USERLIST) ? 6502 6503 CCHMAXPATH : 13),path); 6503 lstrip(rstrip(path));6504 bstrip(path); 6504 6505 if(*path) { 6505 6506 if(SHORT1FROMMP(mp1) == MAIN_USERLIST) {
Note:
See TracChangeset
for help on using the changeset viewer.