fixed capitalization

git-svn-id: svn://svn.code.sf.net/p/processhacker/code@4192 21ef857c-d57f-4fe0-8362-d861dc6d29cd
This commit is contained in:
wj32
2011-05-08 11:07:00 +00:00
parent ecf0856c2c
commit 2a2fbc44e4
+3 -3
View File
@@ -991,9 +991,9 @@ switch (uMsg)
{
HWND comboHandle = GetDlgItem(hwndDlg, IDC_DISPLAYSTYLECOMBO);
ComboBox_AddItemData(comboHandle, L"Images Only");
ComboBox_AddItemData(comboHandle, L"Selective Text");
ComboBox_AddItemData(comboHandle, L"All Text");
ComboBox_AddString(comboHandle, L"Images only");
ComboBox_AddString(comboHandle, L"Selective text");
ComboBox_AddString(comboHandle, L"All text");
ComboBox_SetCurSel(comboHandle, PhGetIntegerSetting(L"ProcessHacker.ToolStatus.ToolbarDisplayStyle"));
Button_SetCheck(GetDlgItem(hwndDlg, IDC_ENABLETOOLBAR), EnableToolBar ? BST_CHECKED : BST_UNCHECKED);