Skip to content

Commit 87a6944

Browse files
committed
added missing brackets
1 parent 2ad8b44 commit 87a6944

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/MultiReplacePanel.cpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3740,14 +3740,18 @@ INT_PTR CALLBACK MultiReplace::run_dlgProc(UINT message, WPARAM wParam, LPARAM l
37403740
}
37413741

37423742
case ID_FIND_ALL_OPTION:
3743+
{
37433744
SetDlgItemText(_hSelf, IDC_FIND_ALL_BUTTON, LM.getLPW(L"split_button_find_all"));
37443745
isFindAllInDocs = false;
37453746
return TRUE;
3747+
}
37463748

3747-
case ID_FIND_ALL_IN_ALL_DOCS_OPTION:
3749+
case ID_FIND_ALL_IN_ALL_DOCS_OPTION:
3750+
{
37483751
SetDlgItemText(_hSelf, IDC_FIND_ALL_BUTTON, LM.getLPW(L"split_button_find_all_in_docs"));
37493752
isFindAllInDocs = true;
37503753
return TRUE;
3754+
}
37513755

37523756
case IDC_FIND_NEXT_BUTTON:
37533757
{

0 commit comments

Comments
 (0)