Ignore:
Timestamp:
Jan 30, 2011, 2:19:10 AM (13 years ago)
Author:
イグトランス (egtra)
Message:

LoadString代替関数の実装

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/egtra/ab5.0/abdev/abdev/DialogBoxes.cpp

    r786 r789  
    20392039#ifndef THETEXT
    20402040        //ライブラリ開発チーム
    2041         LoadString(hResInst,IDS_DEV_GROUP,temporary,1024);
    2042         SetDlgItemText(hwnd,IDC_DEV_GROUP,temporary);
     2041        boost::optional<std::wstring> devGroup = ActiveBasic::Resource::LoadString(hResInst, IDS_DEV_GROUP);
     2042        if (devGroup)
     2043        {
     2044            SetDlgItemTextW(hwnd, IDC_DEV_GROUP, devGroup->c_str());
     2045        }
    20432046#endif
    20442047        ApplyDialogTexture(hwnd);
Note: See TracChangeset for help on using the changeset viewer.