Bug #862
- Fixed bug #862, which suppressed feedback from the 'denotate' command.
This commit is contained in:
@@ -203,6 +203,7 @@
|
|||||||
description. They are now stripped (thanks to Aikido Guy).
|
description. They are now stripped (thanks to Aikido Guy).
|
||||||
+ Fixed bug #856, which prevented filters on missing project from working
|
+ Fixed bug #856, which prevented filters on missing project from working
|
||||||
(thanks to Michelle Crane).
|
(thanks to Michelle Crane).
|
||||||
|
+ Fixed bug #862, which suppressed feedback from the 'denotate' command.
|
||||||
|
|
||||||
# Untracked Bugs, biggest first.
|
# Untracked Bugs, biggest first.
|
||||||
+ Fixed bug that required the '%YAML' prologue in a YAML import.
|
+ Fixed bug that required the '%YAML' prologue in a YAML import.
|
||||||
|
|||||||
@@ -95,6 +95,7 @@ int CmdDenotate::execute (std::string& output)
|
|||||||
if (i->second == pattern)
|
if (i->second == pattern)
|
||||||
{
|
{
|
||||||
match = true;
|
match = true;
|
||||||
|
anno = i->second;
|
||||||
annotations.erase (i);
|
annotations.erase (i);
|
||||||
task->setAnnotations (annotations);
|
task->setAnnotations (annotations);
|
||||||
break;
|
break;
|
||||||
@@ -107,6 +108,7 @@ int CmdDenotate::execute (std::string& output)
|
|||||||
std::string::size_type loc = find (i->second, pattern, sensitive);
|
std::string::size_type loc = find (i->second, pattern, sensitive);
|
||||||
if (loc != std::string::npos)
|
if (loc != std::string::npos)
|
||||||
{
|
{
|
||||||
|
anno = i->second;
|
||||||
annotations.erase (i);
|
annotations.erase (i);
|
||||||
task->setAnnotations (annotations);
|
task->setAnnotations (annotations);
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user