From fc7b344a8be49ab81618ff277a53497d510bd594 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Wed, 10 Jun 2009 22:21:33 -0400 Subject: [PATCH] Enhancement - Context::filter - Automatic filter should not include "uuid". --- src/Context.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Context.cpp b/src/Context.cpp index a110b012e..b4c17ca18 100644 --- a/src/Context.cpp +++ b/src/Context.cpp @@ -440,11 +440,12 @@ std::cout << "# parse post-termination description '" << *arg << "'" << std::end } //////////////////////////////////////////////////////////////////////////////// -// Add all the attributes in the task to the filter. +// Add all the attributes in the task to the filter. All except uuid. void Context::constructFilter () { foreach (att, task) - filter.push_back (att->second); + if (att->first != "uuid") + filter.push_back (att->second); } ////////////////////////////////////////////////////////////////////////////////