ReplaceAll() public method

public ReplaceAll ( ) : void
return void
        private void btnChangeAll_Click(object sender, EventArgs e)
        {
            _fr.ReplaceAll();
            //foreach (FindAndReplaceItem frItem in _fr.LItems)
            //{
            //    frItem.Name = _fr.ChangeString(frItem.Name, txtTo.Text);
            //    frItem.Description = _fr.ChangeString(frItem.Description, txtTo.Text);
            //    frItem.Save(_fr.Rep, _fr.searchFieldType);
            //}

            ShowItem();
            txtState.Text = StateCurrentItem() + @" all found items changed.";
        }
 private void btnReplaceAll_Click(object sender, EventArgs e)
 {
     if (txtReplaceString.Text.Trim() == "")
     {
         DialogResult result = MessageBox.Show("", "Replace with string empty?", MessageBoxButtons.YesNo);
         if (result == DialogResult.No)
         {
             return;
         }
     }
     _fr.ReplaceAll();
     txtStatus.Text = _fr.ItemShortDescription();
     MessageBox.Show(String.Format("{0} items updated", _fr.l_items.Count), "All findings replaced");
 }