diff --git a/WeaselDeployer/SwitcherSettingsDialog.cpp b/WeaselDeployer/SwitcherSettingsDialog.cpp index de31b0de7..0c1df34fd 100644 --- a/WeaselDeployer/SwitcherSettingsDialog.cpp +++ b/WeaselDeployer/SwitcherSettingsDialog.cpp @@ -79,7 +79,10 @@ LRESULT SwitcherSettingsDialog::OnInitDialog(UINT, WPARAM, LPARAM, BOOL&) { schema_list_.SubclassWindow(GetDlgItem(IDC_SCHEMA_LIST)); schema_list_.SetExtendedListViewStyle(LVS_EX_FULLROWSELECT, LVS_EX_FULLROWSELECT); - schema_list_.AddColumn(L"方案名稱", 0); + + CString schemaname; + schemaname.LoadStringW(IDS_STR_SCHEMA_NAME); + schema_list_.AddColumn(schemaname, 0); CRect rc; schema_list_.GetClientRect(&rc); schema_list_.SetColumnWidth(0, rc.Width() - 20); diff --git a/WeaselDeployer/WeaselDeployer.rc b/WeaselDeployer/WeaselDeployer.rc index 62eb386c6..5d4383603 100644 Binary files a/WeaselDeployer/WeaselDeployer.rc and b/WeaselDeployer/WeaselDeployer.rc differ diff --git a/WeaselDeployer/resource.h b/WeaselDeployer/resource.h index cbdfde62c..e02e07bfd 100644 Binary files a/WeaselDeployer/resource.h and b/WeaselDeployer/resource.h differ diff --git a/WeaselDeployer/stdafx.h b/WeaselDeployer/stdafx.h index 8cd64e95c..b5b52e439 100644 --- a/WeaselDeployer/stdafx.h +++ b/WeaselDeployer/stdafx.h @@ -23,3 +23,6 @@ #include #include +#ifdef _UNICODE +#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"") +#endif