Bug Fix - limit:

- The limit: attribute can now be specified on the command line, to
  override any custom report filter.
This commit is contained in:
Paul Beckingham 2009-06-18 18:34:40 -04:00
parent af606598fa
commit b9a1993692
5 changed files with 14 additions and 25 deletions

View file

@ -187,20 +187,6 @@ bool Att::valid (const std::string& input) const
return false;
}
////////////////////////////////////////////////////////////////////////////////
// TODO Obsolete
bool Att::validName (const std::string& name)
{
if (validModifiableName (name))
return true;
for (unsigned int i = 0; i < NUM_INTERNAL_NAMES; ++i)
if (name == internalNames[i])
return true;
return false;
}
////////////////////////////////////////////////////////////////////////////////
bool Att::validModifiableName (const std::string& name)
{