From: Ján Kupec Date: Sun, 7 Jun 2009 14:34:48 +0000 (+0200) Subject: Show to-be-removed and to-change-vendor count in negative color. X-Git-Tag: 1.2.6~66 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7be34cf5c85d3e57abbdc0bbf27769b32ad81ad9;p=platform%2Fupstream%2Fzypper.git Show to-be-removed and to-change-vendor count in negative color. --- diff --git a/src/Summary.cc b/src/Summary.cc index 820dda5..e44df3b 100644 --- a/src/Summary.cc +++ b/src/Summary.cc @@ -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);