Skip to content
Snippets Groups Projects
Commit 4cb7495b authored by rswindell's avatar rswindell
Browse files

Fixed bug in FilterIpMenuItemClick (Yes button clicked, not OK button).

parent 0fa338e4
No related branches found
No related tags found
No related merge requests found
......@@ -121,7 +121,7 @@ void __fastcall TClientForm::FilterIpMenuItemClick(TObject *Sender)
,MB_YESNOCANCEL|MB_ICONQUESTION);
if(res==IDCANCEL)
break;
if(res==IDOK)
if(res==IDYES)
MainForm->FilterIP(
ListItem->SubItems->Strings[2].c_str() /* ip_addr */
,ListItem->SubItems->Strings[0].c_str() /* protocol */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment