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);