CLI2: Fixed bug in UUID filtering

- When filtering by UUID, the expression listed the 'uuid' attribute as a type
  Lexer::Type::string, which should have been Lexer::Type::dom.
This commit is contained in:
Paul Beckingham
2015-06-22 16:20:22 -04:00
parent 4b68fea674
commit 1cf07cd6fb

View File

@@ -1296,7 +1296,7 @@ void CLI2::insertIDExpr ()
A2 argID ("id", Lexer::Type::dom); A2 argID ("id", Lexer::Type::dom);
argID.tag ("FILTER"); argID.tag ("FILTER");
A2 argUUID ("uuid", Lexer::Type::uuid); A2 argUUID ("uuid", Lexer::Type::dom);
argUUID.tag ("FILTER"); argUUID.tag ("FILTER");
reconstructed.push_back (openParen); reconstructed.push_back (openParen);