From 2a2fbc44e496bf97b61606e87d5ffda8a05df353 Mon Sep 17 00:00:00 2001 From: wj32 Date: Sun, 8 May 2011 11:07:00 +0000 Subject: [PATCH] fixed capitalization git-svn-id: svn://svn.code.sf.net/p/processhacker/code@4192 21ef857c-d57f-4fe0-8362-d861dc6d29cd --- 2.x/trunk/plugins/ToolStatus/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/2.x/trunk/plugins/ToolStatus/main.c b/2.x/trunk/plugins/ToolStatus/main.c index 794cdd5ba..4e415f96c 100644 --- a/2.x/trunk/plugins/ToolStatus/main.c +++ b/2.x/trunk/plugins/ToolStatus/main.c @@ -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);