Changeset 620 in dev for trunk/ab5.0/abdev/abdev/DrawWindow.cpp
- Timestamp:
- May 19, 2008, 6:17:02 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/abdev/DrawWindow.cpp
r618 r620 997 997 if(i2!=projectInfo.res.NumberOfBitmapRes){ 998 998 lstrcpy(temporary,projectInfo.res.pBitmapResInfo[i2].path); 999 GetFullPath(temporary,projectInfo.dir);999 lstrcpy( temporary, projectInfo.GetWorkDir().GetFullPath( temporary ).c_str() ); 1000 1000 hImage=LoadImage(NULL,temporary,IMAGE_BITMAP,0,0,LR_DEFAULTSIZE|LR_LOADFROMFILE); 1001 1001 … … 1366 1366 lstrcpy(temporary,projectInfo.res.pIconResInfo[i2].path); 1367 1367 } 1368 GetFullPath(temporary,projectInfo.dir);1368 lstrcpy( temporary, projectInfo.GetWorkDir().GetFullPath( temporary ).c_str() ); 1369 1369 hImage=LoadImage(NULL,temporary,IMAGE_ICON,0,0,LR_DEFAULTSIZE|LR_LOADFROMFILE); 1370 1370 if(hImage){ … … 1410 1410 lstrcpy(temporary,projectInfo.res.pBitmapResInfo[i2].path); 1411 1411 } 1412 GetFullPath(temporary,projectInfo.dir);1412 lstrcpy( temporary, projectInfo.GetWorkDir().GetFullPath( temporary ).c_str() ); 1413 1413 hImage=LoadImage(NULL,temporary,IMAGE_BITMAP,0,0,LR_DEFAULTSIZE|LR_LOADFROMFILE); 1414 1414 if(hImage){
Note:
See TracChangeset
for help on using the changeset viewer.