DELETE; -cells #no list of cells

Causes all reactants to be deleted, same as DELETE; -all

git-svn-id: svn://136.177.114.72/svn_GW/phreeqc3/trunk@7085 1feff8c3-07ed-0310-ac33-dd36852eb9cd
This commit is contained in:
David L Parkhurst 2012-11-16 01:18:33 +00:00
parent cfdbf58dce
commit f6498feecc

View File

@ -264,7 +264,14 @@ bool StorageBinList::Read(CParser & parser)
break;
case 14:
case 15:
this->TransferAll(cell_list);
if (cell_list.Get_numbers().empty())
{
this->SetAll(true);
}
else
{
this->TransferAll(cell_list);
}
break;
default:
case CParser::OPT_DEFAULT: