Show to-be-removed and to-change-vendor count in negative color.
authorJán Kupec <jkupec@suse.cz>
Sun, 7 Jun 2009 14:34:48 +0000 (16:34 +0200)
committerJán Kupec <jkupec@suse.cz>
Sun, 7 Jun 2009 14:34:48 +0000 (16:34 +0200)
src/Summary.cc

index 820dda5..e44df3b 100644 (file)
@@ -678,7 +678,7 @@ void Summary::writePackageCounts(ostream & out)
     count = i->second.size();
     if (gotcha)
       s << ", ";
-    fprint_color(s, str::form("%d ", count), COLOR_CONTEXT_HIGHLIGHT);
+    fprint_color(s, str::form("%d ", count), COLOR_CONTEXT_NEGATIVE);
     if (gotcha)
       // translators: this text will be preceded by a number e.g. "5 to ..."
       s << _PL("to remove", "to remove", count);
@@ -693,7 +693,7 @@ void Summary::writePackageCounts(ostream & out)
     count = i->second.size();
     if (gotcha)
       s << ", ";
-    fprint_color(s, str::form("%d ", count), COLOR_CONTEXT_HIGHLIGHT);
+    fprint_color(s, str::form("%d ", count), COLOR_CONTEXT_NEGATIVE);
     if (gotcha)
       // translators: this text will be preceded by a number e.g. "5 to ..."
       s << _PL("to change vendor", " to change vendor", count);