Ignore:
Timestamp:
May 19, 2008, 6:17:02 PM (17 years ago)
Author:
dai_9181
Message:

Projectクラスをリファクタリング中。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/abdev/DrawWindow.cpp

    r618 r620  
    997997        if(i2!=projectInfo.res.NumberOfBitmapRes){
    998998            lstrcpy(temporary,projectInfo.res.pBitmapResInfo[i2].path);
    999             GetFullPath(temporary,projectInfo.dir);
     999            lstrcpy( temporary, projectInfo.GetWorkDir().GetFullPath( temporary ).c_str() );
    10001000            hImage=LoadImage(NULL,temporary,IMAGE_BITMAP,0,0,LR_DEFAULTSIZE|LR_LOADFROMFILE);
    10011001
     
    13661366                    lstrcpy(temporary,projectInfo.res.pIconResInfo[i2].path);
    13671367                }
    1368                 GetFullPath(temporary,projectInfo.dir);
     1368                lstrcpy( temporary, projectInfo.GetWorkDir().GetFullPath( temporary ).c_str() );
    13691369                hImage=LoadImage(NULL,temporary,IMAGE_ICON,0,0,LR_DEFAULTSIZE|LR_LOADFROMFILE);
    13701370                if(hImage){
     
    14101410                    lstrcpy(temporary,projectInfo.res.pBitmapResInfo[i2].path);
    14111411                }
    1412                 GetFullPath(temporary,projectInfo.dir);
     1412                lstrcpy( temporary, projectInfo.GetWorkDir().GetFullPath( temporary ).c_str() );
    14131413                hImage=LoadImage(NULL,temporary,IMAGE_BITMAP,0,0,LR_DEFAULTSIZE|LR_LOADFROMFILE);
    14141414                if(hImage){
Note: See TracChangeset for help on using the changeset viewer.